8 lines
160 B
TypeScript
8 lines
160 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
SERVICE_WORKER_FILE: string;
|
|
PWA_FALLBACK_HTML: string;
|
|
PWA_SERVICE_WORKER_REGEX: string;
|
|
}
|
|
}
|