diff --git a/firestore_node/lib/src/node/firestore_node_js_interop.dart b/firestore_node/lib/src/node/firestore_node_js_interop.dart index a3166c2..37a8f78 100644 --- a/firestore_node/lib/src/node/firestore_node_js_interop.dart +++ b/firestore_node/lib/src/node/firestore_node_js_interop.dart @@ -539,8 +539,8 @@ extension QueryDocumentSnapshotExt on QueryDocumentSnapshot { /*export type OrderByDirection = 'desc' | 'asc';*/ /// Filter conditions in a `Query.where()` clause are specified using the -/// strings '<', '<=', '==', '>=', and '>'. -/*export type WhereFilterOp = '<' | '<=' | '==' | '>=' | '>';*/ +/// strings `<`, `<=`, `==`, `>=`, and `>`. +/*export type WhereFilterOp = `<` | `<=` | `==` | `>=` | `>`;*/ /// A `Query` refers to a Query which you can read or listen to. You can also /// construct refined `Query` objects by adding filters and ordering.