1
1
mirror of https://github.com/Fabio286/antares.git synced 2025-06-05 21:59:22 +02:00

refactor: ipc handlers ts refactor

This commit is contained in:
2022-04-15 14:56:13 +02:00
parent 5e2ad8c377
commit 6adc93e1cd
20 changed files with 219 additions and 75 deletions

View File

@ -251,11 +251,12 @@ export interface QueryBuilderObject {
where: string[];
groupBy: string[];
orderBy: string[];
limit: string[];
offset: string[];
limit: number;
offset: number;
join: string[];
update: string[];
insert: string[];
// eslint-disable-next-line @typescript-eslint/no-explicit-any
insert: {[key: string]: any}[];
delete: boolean;
}