9 lines
177 B
TypeScript
9 lines
177 B
TypeScript
/// <reference types="astro/client" />
|
|
|
|
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
LIBRARY_ROOT?: string;
|
|
DATA_ROOT?: string;
|
|
PUBLIC_ORIGIN?: string;
|
|
}
|
|
}
|