FirebaseQuery.equalTo can take boolean values. See https://www.firebase.com/docs/web/api/query/equalto.html

This commit is contained in:
Nina Chaubal
2015-12-05 21:23:17 -06:00
parent 0f1e77e379
commit 791ab3bf26
+1
View File
@@ -143,6 +143,7 @@ interface FirebaseQuery {
*/
equalTo(value: string, key?: string): FirebaseQuery;
equalTo(value: number, key?: string): FirebaseQuery;
equalTo(value: boolean, key?: string): FirebaseQuery;
/**
* Generates a new Query object limited to the first certain number of children.
*/