2023-09-15 09:40:35 +00:00
|
|
|
/// <reference types="vite/client" />
|
2023-11-30 03:31:12 +00:00
|
|
|
declare module 'element-plus/dist/locale/zh-cn.mjs'
|
2025-01-20 13:26:51 +00:00
|
|
|
declare module 'element-plus/dist/locale/en.mjs'
|
|
|
|
|
declare module 'element-plus/dist/locale/zh-tw.mjs'
|
2023-11-29 07:38:22 +00:00
|
|
|
declare module 'markdown-it-task-lists'
|
|
|
|
|
declare module 'markdown-it-abbr'
|
|
|
|
|
declare module 'markdown-it-anchor'
|
|
|
|
|
declare module 'markdown-it-footnote'
|
|
|
|
|
declare module 'markdown-it-sub'
|
|
|
|
|
declare module 'markdown-it-sup'
|
|
|
|
|
declare module 'markdown-it-toc-done-right'
|
2024-04-24 09:30:06 +00:00
|
|
|
declare module 'katex'
|
2024-11-13 02:37:16 +00:00
|
|
|
interface Window {
|
|
|
|
|
sendMessage: ?((message: string, other_params_data: any) => void)
|
|
|
|
|
}
|
2023-09-15 09:40:35 +00:00
|
|
|
interface ImportMeta {
|
2023-11-15 06:27:25 +00:00
|
|
|
readonly env: ImportMetaEnv
|
2023-11-29 07:38:22 +00:00
|
|
|
}
|
2024-11-13 02:37:16 +00:00
|
|
|
declare type Recordable<T = any> = Record<string, T>
|