vuex-easy-firestore
Version:
Easy coupling of firestore and a vuex module. 2-way sync with 0 boilerplate!
18 lines (17 loc) • 662 B
TypeScript
export declare class ArrayUnion {
isArrayHelper: boolean;
payload: any;
constructor(...payload: any);
executeOn(array: any[]): any[];
getFirestoreFieldValue(): import("@firebase/firestore").FieldValue;
}
export declare class ArrayRemove {
isArrayHelper: boolean;
payload: any;
constructor(...payload: any);
executeOn(array: any[]): any[];
getFirestoreFieldValue(): import("@firebase/firestore").FieldValue;
}
export declare function arrayUnion(...payload: any[]): ArrayUnion;
export declare function arrayRemove(...payload: any[]): ArrayRemove;
export declare function isArrayHelper(value: any): boolean;