9 lines
153 B
TypeScript
9 lines
153 B
TypeScript
interface ImportMetaEnv {
|
|
readonly DIRECTUS_TOKEN: string;
|
|
readonly DIRECTUS_URL: string;
|
|
}
|
|
|
|
interface ImportMeta {
|
|
readonly env: ImportMetaEnv;
|
|
}
|