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/dumper.d.ts vendored Normal file
View File

@@ -0,0 +1,5 @@
export interface SqlDumper {
s: string;
put(format: string, ...args);
putCmd(format: string, ...args);
}