mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-18 02:06:01 +00:00
6 lines
111 B
TypeScript
6 lines
111 B
TypeScript
export interface SqlDumper {
|
|
s: string;
|
|
put(format: string, ...args);
|
|
putCmd(format: string, ...args);
|
|
}
|