@tak-ps/cloudtak 13.28.2 → 13.30.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
|
@@ -1,12 +1,9 @@
|
|
|
1
1
|
export declare function getCurrentEntryBuildId(): string;
|
|
2
|
-
export declare function getPageServiceWorkerBuildId(): string | null;
|
|
3
2
|
/**
|
|
4
|
-
* Called by the update banner
|
|
5
|
-
*
|
|
6
|
-
*
|
|
7
|
-
*
|
|
8
|
-
* same `controllerchange` but will show their own update prompt instead
|
|
9
|
-
* of silently reloading (which would lose unsaved state).
|
|
3
|
+
* Called by the App.vue update banner. With a waiting worker, activate it and
|
|
4
|
+
* let controllerchange reload this tab; without one (another tab already
|
|
5
|
+
* activated the new build) the new cache is live, so a plain reload serves
|
|
6
|
+
* the new shell.
|
|
10
7
|
*/
|
|
11
|
-
export declare function
|
|
12
|
-
export declare function initServiceWorker(
|
|
8
|
+
export declare function applyServiceWorkerUpdate(registration: ServiceWorkerRegistration | null): void;
|
|
9
|
+
export declare function initServiceWorker(): void;
|
|
@@ -0,0 +1,22 @@
|
|
|
1
|
+
import type { Import } from '../../../types.ts';
|
|
2
|
+
type __VLS_Props = {
|
|
3
|
+
imp: Import;
|
|
4
|
+
showUsername?: boolean;
|
|
5
|
+
buttonRetry?: boolean;
|
|
6
|
+
buttonDownload?: boolean;
|
|
7
|
+
};
|
|
8
|
+
declare const __VLS_export: import("vue").DefineComponent<__VLS_Props, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {} & {
|
|
9
|
+
click: () => any;
|
|
10
|
+
download: () => any;
|
|
11
|
+
retry: () => any;
|
|
12
|
+
}, string, import("vue").PublicProps, Readonly<__VLS_Props> & Readonly<{
|
|
13
|
+
onClick?: (() => any) | undefined;
|
|
14
|
+
onDownload?: (() => any) | undefined;
|
|
15
|
+
onRetry?: (() => any) | undefined;
|
|
16
|
+
}>, {
|
|
17
|
+
showUsername: boolean;
|
|
18
|
+
buttonRetry: boolean;
|
|
19
|
+
buttonDownload: boolean;
|
|
20
|
+
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, false, {}, any>;
|
|
21
|
+
declare const _default: typeof __VLS_export;
|
|
22
|
+
export default _default;
|