File tree Expand file tree Collapse file tree 2 files changed +2
-1
lines changed
Expand file tree Collapse file tree 2 files changed +2
-1
lines changed Original file line number Diff line number Diff line change @@ -88,7 +88,7 @@ export class SqliteClient {
8888 const finalQueries = queries . map ( ( query ) => {
8989 if ( query . length === 1 ) {
9090 // @ts -ignore
91- query . push ( [ ] as any ) ;
91+ query . push ( [ ] ) ;
9292 }
9393 return query ;
9494 } ) ;
Original file line number Diff line number Diff line change @@ -13,6 +13,7 @@ export type TableColumnValue = string | boolean | number | undefined;
1313export type Scalar = string | number | boolean | null | ArrayBuffer | ArrayBufferView ;
1414// eslint-disable-next-line @typescript-eslint/no-explicit-any
1515export type PreparedQueries = [ string ] | [ string , Array < any > ] ;
16+ // eslint-disable-next-line @typescript-eslint/no-explicit-any
1617export type PreparedBatchQueries = [ string ] | [ string , Array < any > | Array < Array < any > > ] ;
1718
1819export type PendingTaskTypes = {
You can’t perform that action at this time.
0 commit comments