mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-19 17:46:00 +00:00
10 lines
199 B
TypeScript
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);
|
|
}
|