k0r.386/.vitepress/theme/Config.ts
2023-12-06 16:37:53 +01:00

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[]
}