You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
k0r.386/.vitepress/theme/Config.ts

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