16 lines
239 B
TypeScript
16 lines
239 B
TypeScript
export type Uri = {
|
|
label: string
|
|
uri: string
|
|
}
|
|
|
|
export type SimpleCommand = {
|
|
command: string,
|
|
aliases?: string[],
|
|
help?: string,
|
|
message: string,
|
|
uris: Uri[],
|
|
}
|
|
|
|
export interface ThemeConfig {
|
|
commands: SimpleCommand[]
|
|
}
|