10 lines
724 B
TypeScript
10 lines
724 B
TypeScript
|
export type DocumentReference<T> = import('firebase/firestore').DocumentReference<T>;
|
||
|
export type DocumentData = import('firebase/firestore').DocumentData;
|
||
|
export type SnapshotListenOptions = import('firebase/firestore').SnapshotListenOptions;
|
||
|
export type Query<T> = import('firebase/firestore').Query<T>;
|
||
|
export type DocumentSnapshot<T> = import('firebase/firestore').DocumentSnapshot<T>;
|
||
|
export type QuerySnapshot<T> = import('firebase/firestore').QuerySnapshot<T>;
|
||
|
export type DocumentChangeType = import('firebase/firestore').DocumentChangeType;
|
||
|
export type DocumentChange<T> = import('firebase/firestore').DocumentChange<T>;
|
||
|
export type QueryDocumentSnapshot<T> = import('firebase/firestore').QueryDocumentSnapshot<T>;
|