(fieldPath: keyof T | IFieldPath, directionStr?: 'asc' | 'desc')
| 40 | onSnapshot(options: SnapshotListenOptions, onNext: (snapshot: IQuerySnapshot<T>) => void, onError?: (error: Error) => void, onCompletion?: () => void): () => void; |
| 41 | |
| 42 | orderBy(fieldPath: keyof T | IFieldPath, directionStr?: 'asc' | 'desc'): IQuery<T>; |
| 43 | |
| 44 | startAfter(snapshot: IDocumentSnapshot<T>): IQuery<T>; |
| 45 |