6 lines
130 B
TypeScript
6 lines
130 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
NEXT_PUBLIC_API_URL: string;
|
|
STRAPI_API_TOKEN: string;
|
|
}
|
|
} |