@umituz/react-native-ai-generation-content 1.17.80 → 1.17.82
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.
package/package.json
CHANGED
|
@@ -1,42 +0,0 @@
|
|
|
1
|
-
/**
|
|
2
|
-
* Type declarations for external modules
|
|
3
|
-
*/
|
|
4
|
-
|
|
5
|
-
declare module "@umituz/react-native-firestore" {
|
|
6
|
-
import type { Firestore } from "firebase/firestore";
|
|
7
|
-
|
|
8
|
-
export class BaseRepository {
|
|
9
|
-
protected getDb(): Firestore | null;
|
|
10
|
-
protected getDbOrThrow(): Firestore;
|
|
11
|
-
protected isDbInitialized(): boolean;
|
|
12
|
-
protected isQuotaError(error: unknown): boolean;
|
|
13
|
-
protected handleQuotaError(error: unknown): never;
|
|
14
|
-
protected executeWithQuotaHandling<T>(
|
|
15
|
-
operation: () => Promise<T>,
|
|
16
|
-
): Promise<T>;
|
|
17
|
-
protected trackRead(
|
|
18
|
-
collection: string,
|
|
19
|
-
count: number,
|
|
20
|
-
cached: boolean,
|
|
21
|
-
): void;
|
|
22
|
-
protected trackWrite(
|
|
23
|
-
collection: string,
|
|
24
|
-
docId: string,
|
|
25
|
-
count: number,
|
|
26
|
-
): void;
|
|
27
|
-
protected trackDelete(
|
|
28
|
-
collection: string,
|
|
29
|
-
docId: string,
|
|
30
|
-
count: number,
|
|
31
|
-
): void;
|
|
32
|
-
destroy(): void;
|
|
33
|
-
}
|
|
34
|
-
|
|
35
|
-
export function getFirestore(): Firestore | null;
|
|
36
|
-
export function initializeFirestore(app: unknown): void;
|
|
37
|
-
export function isFirestoreInitialized(): boolean;
|
|
38
|
-
}
|
|
39
|
-
|
|
40
|
-
|
|
41
|
-
declare module "expo-apple-authentication";
|
|
42
|
-
declare module "@umituz/react-native-filesystem";
|