k0r.386/.vitepress/theme/Config.ts
2023-12-10 15:54:02 +01:00

17 lines
267 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 {
defaultHeaderFont: string
commands: SimpleCommand[]
}