Fix raw bindings typing (#5401)

This commit is contained in:
Kevin Dodge 2023-07-19 17:02:56 -04:00 committed by GitHub
parent 7c819d325c
commit 4b6a8045eb
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

2
types/index.d.ts vendored
View File

@ -2118,7 +2118,7 @@ export declare namespace Knex {
<TResult2 = TResult>(value: Value): Raw<TResult2>;
<TResult2 = TResult>(
sql: string,
...bindings: readonly RawBinding[]
binding: RawBinding
): Raw<TResult2>;
<TResult2 = TResult>(
sql: string,