不要怂,就是干,撸起袖子干!

Commit 3f8246f1 by Esteban Ibarra Committed by Sushant

fix(typings): add date to where (#11612)

1 parent 1e1196de
Showing with 2 additions and 0 deletions
...@@ -341,6 +341,7 @@ export type WhereValue = ...@@ -341,6 +341,7 @@ export type WhereValue =
| string // literal value | string // literal value
| number // literal value | number // literal value
| boolean // literal value | boolean // literal value
| Date // literal value
| Buffer // literal value | Buffer // literal value
| null | null
| WhereOperators | WhereOperators
......
...@@ -22,6 +22,7 @@ where = { ...@@ -22,6 +22,7 @@ where = {
buffer: Buffer.alloc(0), buffer: Buffer.alloc(0),
buffers: [Buffer.alloc(0)], buffers: [Buffer.alloc(0)],
null: null, null: null,
date: new Date()
}; };
// Operators // Operators
......
Markdown is supported
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!