refactor: fix ts error

This commit is contained in:
Fabio Di Stasio 2023-04-08 13:12:29 +02:00
parent 0f24c80e5a
commit ebf7780c3c
1 changed files with 1 additions and 1 deletions

View File

@ -72,7 +72,7 @@ export const escapeAndQuote = (val: string, client: ClientCode) => {
export const valueToSqlString = (args: {
val: any;
client: ClientCode;
field: {type: string; datePrecision: number};
field: {type: string; datePrecision: number; isArray?: boolean};
}): string => {
let parsedValue;
const { val, client, field } = args;