mirror of https://github.com/Fabio286/antares.git
refactor: fix ts error
This commit is contained in:
parent
0f24c80e5a
commit
ebf7780c3c
|
@ -72,7 +72,7 @@ export const escapeAndQuote = (val: string, client: ClientCode) => {
|
||||||
export const valueToSqlString = (args: {
|
export const valueToSqlString = (args: {
|
||||||
val: any;
|
val: any;
|
||||||
client: ClientCode;
|
client: ClientCode;
|
||||||
field: {type: string; datePrecision: number};
|
field: {type: string; datePrecision: number; isArray?: boolean};
|
||||||
}): string => {
|
}): string => {
|
||||||
let parsedValue;
|
let parsedValue;
|
||||||
const { val, client, field } = args;
|
const { val, client, field } = args;
|
||||||
|
|
Loading…
Reference in New Issue