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

5
types/dialect.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export interface SqlDialect {
rangeSelect?: boolean;
limitSelect?: boolean;
quoteIdentifier(s: string): string;
}