You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
13 lines
412 B
13 lines
412 B
/// <reference types="vitepress/client" />
|
|
/// <reference types="vue/macros-global" />
|
|
|
|
declare module '@overtrue/easywechat-theme/config' {
|
|
import { UserConfig } from 'vitepress'
|
|
const config: () => Promise<UserConfig>
|
|
export default config
|
|
}
|
|
|
|
declare module '@overtrue/easywechat-theme/highlight' {
|
|
const createHighlighter: () => Promise<(input: string) => string>
|
|
export default createHighlighter
|
|
}
|
|
|