From 537910086d82b70a4567a6c1807e40d25ef6dd10 Mon Sep 17 00:00:00 2001 From: Alexandre Roux Date: Sat, 5 Oct 2024 15:51:44 +0200 Subject: [PATCH] deprecate old public timestamps utils --- firestore_node/lib/src/node/firestore_node_js_interop.dart | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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.