mirror of
https://github.com/zadam/trilium.git
synced 2025-11-12 08:15:52 +01:00
15 lines
284 B
TypeScript
15 lines
284 B
TypeScript
|
|
/// <reference types="vite/client" />
|
||
|
|
|
||
|
|
interface ViteTypeOptions {
|
||
|
|
strictImportMetaEnv: unknown
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMetaEnv {
|
||
|
|
/** The license key for CKEditor premium features. */
|
||
|
|
readonly VITE_CKEDITOR_KEY?: string;
|
||
|
|
}
|
||
|
|
|
||
|
|
interface ImportMeta {
|
||
|
|
readonly env: ImportMetaEnv
|
||
|
|
}
|