2
0
mirror of https://github.com/frappe/books.git synced 2024-09-20 11:29:00 +00:00
books/backend/database/types.ts

12 lines
302 B
TypeScript
Raw Normal View History

2022-03-23 06:16:13 +00:00
export type RawType = string | number | boolean;
export type RawData = Record<string, RawType>[];
export type QueryFilter = Record<string, string | string[]>;
export interface GetQueryBuilderOptions {
offset: number;
limit: number;
groupBy: string;
orderBy: string;
order: 'desc' | 'asc';
}