From fba211a637ac418821f86413c399b9911b888552 Mon Sep 17 00:00:00 2001 From: Delgermurun Date: Mon, 6 Jun 2022 02:59:21 +0800 Subject: [PATCH] Updating raw query bind parameter type Allowing custom object type in bind parameter for raw query. --- types/index.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/types/index.d.ts b/types/index.d.ts index 3b8ac2f34f..96fc78ff2a 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -442,6 +442,7 @@ export declare namespace Knex { | Array | Array | Buffer + | object | Knex.Raw; interface ValueDict extends Dict {}