Skip to content

Commit 71af081

Browse files
committed
fix: lint issues
1 parent 98908b8 commit 71af081

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

package/src/store/SqliteClient.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff 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
});

package/src/store/types.ts

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ export type TableColumnValue = string | boolean | number | undefined;
1313
export type Scalar = string | number | boolean | null | ArrayBuffer | ArrayBufferView;
1414
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1515
export type PreparedQueries = [string] | [string, Array<any>];
16+
// eslint-disable-next-line @typescript-eslint/no-explicit-any
1617
export type PreparedBatchQueries = [string] | [string, Array<any> | Array<Array<any>>];
1718

1819
export type PendingTaskTypes = {

0 commit comments

Comments
 (0)