mirror of
https://github.com/Syngnat/GoNavi.git
synced 2026-06-15 19:19:35 +08:00
15 lines
315 B
TypeScript
15 lines
315 B
TypeScript
/// <reference types="vite/client" />
|
|
|
|
declare module 'monaco-editor/esm/nls.messages.zh-cn' {
|
|
const messages: Record<string, string>;
|
|
export default messages;
|
|
}
|
|
|
|
interface ImportMetaEnv {
|
|
readonly VITE_GONAVI_ENABLE_MAC_WINDOW_DIAGNOSTICS?: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|