From 633f9149a90d6cb736f3ec64a482f4f412a19ee0 Mon Sep 17 00:00:00 2001 From: Rohit Mahajan Date: Thu, 31 Oct 2024 22:08:38 +0530 Subject: [PATCH] Update interfaces.ts to address keypath issue --- src/common/interfaces.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/common/interfaces.ts b/src/common/interfaces.ts index 90526031..6af9e85b 100644 --- a/src/common/interfaces.ts +++ b/src/common/interfaces.ts @@ -125,7 +125,7 @@ export interface IWhereQueryOption { // [columnName: string]: IWhereQueryOption | string | number | boolean; // } -export type IWhereQuery = Record | { or?: IWhereQuery }; +export type IWhereQuery = Record | { or?: IWhereQuery }; export interface ICaseOption { '>'?: any;