mirror of
https://github.com/DeNNiiInc/dbgate.git
synced 2026-04-21 17:36:01 +00:00
app commands works
This commit is contained in:
16
packages/types/appdefs.d.ts
vendored
Normal file
16
packages/types/appdefs.d.ts
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
interface ApplicationCommand {
|
||||
name: string;
|
||||
sql: string;
|
||||
}
|
||||
|
||||
interface ApplicationQuery {
|
||||
name: string;
|
||||
sql: string;
|
||||
}
|
||||
|
||||
interface ApplicationDefinition {
|
||||
name: string;
|
||||
|
||||
queries: ApplicationQuery[];
|
||||
commands: ApplicationCommand[];
|
||||
}
|
||||
Reference in New Issue
Block a user