1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-02-09 00:08:55 +01:00

refactor: fix ts error

This commit is contained in:
Fabio Di Stasio 2023-04-08 13:12:29 +02:00
parent 0f24c80e5a
commit ebf7780c3c

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;