10 lines
138 B
TypeScript
10 lines
138 B
TypeScript
declare module '*.css';
|
|
|
|
interface ImportMetaEnv {
|
|
readonly SSG_MD: boolean;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|