mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 16:26:00 +00:00
17 lines
246 B
TypeScript
17 lines
246 B
TypeScript
interface ApplicationCommand {
|
|
name: string;
|
|
sql: string;
|
|
}
|
|
|
|
interface ApplicationQuery {
|
|
name: string;
|
|
sql: string;
|
|
}
|
|
|
|
interface ApplicationDefinition {
|
|
name: string;
|
|
|
|
queries: ApplicationQuery[];
|
|
commands: ApplicationCommand[];
|
|
}
|