From 0c4fb13b1d1248f2b462c0ff5a437fb0b33b4348 Mon Sep 17 00:00:00 2001 From: Ian Campbell <8953846+iancamp@users.noreply.github.com> Date: Fri, 28 Jan 2022 12:01:52 -0500 Subject: [PATCH] Add type definition for notIn(subQuery) --- lib/types.d.ts | 1 + 1 file changed, 1 insertion(+) diff --git a/lib/types.d.ts b/lib/types.d.ts index 7909811..9a4dfbc 100644 --- a/lib/types.d.ts +++ b/lib/types.d.ts @@ -192,6 +192,7 @@ declare module "node-sql-2" { in(arr:T[]):BinaryNode in(subQuery:SubQuery):BinaryNode notIn(arr:T[]):BinaryNode + notIn(subQuery:SubQuery):BinaryNode equals(node: T|Column):BinaryNode notEquals(node: T|Column):BinaryNode gte(node: T|Column):BinaryNode