@react-firebase/firestore
Version:
Efficiently Render & mutate Firestore data in your react(or react-native) app.
16 lines (15 loc) • 501 B
TypeScript
/// <reference types="react" />
import * as firebase from "firebase/app";
import "firebase/firestore";
export declare const testCollectionPath = "user_bookmarks";
export declare const testDocPath: string;
export declare const testDocValue: {
nowOnCli: number;
nowOnServer: firebase.firestore.FieldValue;
some: string;
};
export declare const testDocUpdate: {
someOther: string;
};
export declare const s: (v: any) => string;
export declare const App: () => JSX.Element;