From 4b6a8045eb60012b0e61613639092ad18b00d09a Mon Sep 17 00:00:00 2001 From: Kevin Dodge <105815454+kevindorchard@users.noreply.github.com> Date: Wed, 19 Jul 2023 17:02:56 -0400 Subject: [PATCH] Fix raw bindings typing (#5401) --- 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 e76df7d4..bae207bf 100644 --- a/types/index.d.ts +++ b/types/index.d.ts @@ -2118,7 +2118,7 @@ export declare namespace Knex { (value: Value): Raw; ( sql: string, - ...bindings: readonly RawBinding[] + binding: RawBinding ): Raw; ( sql: string,