Skip to content

Commit

Permalink
deprecate old public timestamps utils
Browse files Browse the repository at this point in the history
  • Loading branch information
alextekartik committed Oct 5, 2024
1 parent 3186eb4 commit 5379100
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions firestore_node/lib/src/node/firestore_node_js_interop.dart
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down

0 comments on commit 5379100

Please sign in to comment.