k0r.386/.vitepress/theme/Config.ts

17 lines
239 B
TypeScript
Raw Normal View History

2023-12-06 16:37:53 +01:00
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[]
}