dialect, dumper

This commit is contained in:
Jan Prochazka
2020-02-02 19:27:25 +01:00
parent 9f3679fefb
commit 6188e90340
18 changed files with 294 additions and 10 deletions

9
types/query.d.ts vendored
View File

@@ -1,3 +1,8 @@
export interface QueryResult {
rows: any[];
export interface RangeDefinition {
offset: number;
limit: number;
}
export interface QueryResult {
rows: any[];
}