@tak-ps/cloudtak 13.25.1 → 13.25.3
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.
|
@@ -5,16 +5,16 @@ declare const __VLS_export: import("vue").DefineComponent<import("vue").ExtractP
|
|
|
5
5
|
default: number;
|
|
6
6
|
};
|
|
7
7
|
}>, {}, {}, {}, {}, import("vue").ComponentOptionsMixin, import("vue").ComponentOptionsMixin, {
|
|
8
|
-
click: (...args: any[]) => void;
|
|
9
8
|
close: (...args: any[]) => void;
|
|
9
|
+
click: (...args: any[]) => void;
|
|
10
10
|
}, string, import("vue").PublicProps, Readonly<import("vue").ExtractPropTypes<{
|
|
11
11
|
size: {
|
|
12
12
|
type: NumberConstructor;
|
|
13
13
|
default: number;
|
|
14
14
|
};
|
|
15
15
|
}>> & Readonly<{
|
|
16
|
-
onClick?: ((...args: any[]) => any) | undefined;
|
|
17
16
|
onClose?: ((...args: any[]) => any) | undefined;
|
|
17
|
+
onClick?: ((...args: any[]) => any) | undefined;
|
|
18
18
|
}>, {
|
|
19
19
|
size: number;
|
|
20
20
|
}, {}, {}, {}, string, import("vue").ComponentProvideOptions, true, {}, any>;
|
|
@@ -220,3 +220,6 @@ export type DatabaseType = Dexie & {
|
|
|
220
220
|
contact: EntityTable<Contact, 'uid'>;
|
|
221
221
|
};
|
|
222
222
|
export declare const db: DatabaseType;
|
|
223
|
+
export declare function ensureDatabase(): Promise<void>;
|
|
224
|
+
export declare function isTransientDbError(err: unknown): boolean;
|
|
225
|
+
export declare function withDbRetry<T>(fn: () => Promise<T>, attempts?: number): Promise<T>;
|