8 lines
190 B
TypeScript
8 lines
190 B
TypeScript
declare namespace NodeJS {
|
|
interface ProcessEnv {
|
|
readonly NEXT_PUBLIC_API: string;
|
|
readonly NEXT_PUBLIC_S3_BUCKET: string;
|
|
readonly NEXT_PUBLIC_TINYMCE_API_KEY: string;
|
|
}
|
|
}
|