[firestore][js] Correct flow type

This commit is contained in:
Chris Bianca 2017-11-16 16:54:42 +00:00
parent 1b6e4cbaad
commit 5c43c88f6a
1 changed files with 1 additions and 1 deletions

View File

@ -45,7 +45,7 @@ type QueryOptions = {
} }
export type Operator = '<' | '<=' | '=' | '==' | '>' | '>='; export type Operator = '<' | '<=' | '=' | '==' | '>' | '>=';
type QueryListenOptions = { type QueryListenOptions = {
includeQueryMetadataChanges: boolean, includeDocumentMetadataChanges: boolean,
includeQueryMetadataChanges: boolean, includeQueryMetadataChanges: boolean,
} }