summaryrefslogtreecommitdiff
path: root/client-web/source/sw/protocol.ts
blob: 620c732f78cb821b791e28c4b82f217b26cc4cd6 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/*
    This file is part of keks-meet (https://codeberg.org/metamuffin/keks-meet)
    which is licensed under the GNU Affero General Public License (version 3); see /COPYING.
    Copyright (C) 2023 metamuffin <metamuffin.org>
*/
export interface SWMessage {
    download?: { path: string, size: number }
    check_version?: boolean,
    update?: boolean,

    version_info?: { installed_version: string, available_version: string }
    updated?: boolean
}