From 8a648773b2e5ad8e9769b0f22933e0e2d387a27a Mon Sep 17 00:00:00 2001 From: Pedro Romano Date: Thu, 13 Feb 2020 08:51:21 +0000 Subject: [PATCH] `fn.now` takes optionally a precision argument. --- types/index.d.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/types/index.d.ts b/types/index.d.ts index b2a6c54565..b40a88564b 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -1912,7 +1912,7 @@ declare namespace Knex { } interface FunctionHelper { - now(): Raw; + now(precision?: number): Raw; } interface EnumOptions {