Files
dbgate/packages/types/dumper.d.ts
2020-03-02 22:08:06 +01:00

10 lines
199 B
TypeScript

import { TableInfo } from "./dbinfo";
export interface SqlDumper {
s: string;
put(format: string, ...args);
putCmd(format: string, ...args);
endCommand();
createTable(table: TableInfo);
}