forked from Niels-IO/next-image-export-optimizer
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathenvironment.d.ts
More file actions
18 lines (17 loc) · 744 Bytes
/
Copy pathenvironment.d.ts
File metadata and controls
18 lines (17 loc) · 744 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
declare global {
namespace NodeJS {
interface ProcessEnv {
storePicturesInWEBP: string | undefined;
generateAndUseBlurImages: string | undefined;
nextImageExportOptimizer_storePicturesInWEBP: string | undefined;
nextImageExportOptimizer_generateAndUseBlurImages: string | undefined;
nextImageExportOptimizer_exportFolderName: string | undefined;
nextImageExportOptimizer_quality: string | undefined;
nextImageExportOptimizer_remoteImageCacheTTL: string | undefined;
__NEXT_IMAGE_OPTS: { deviceSizes: string[]; imageSizes: string[] };
}
}
}
// If this file has no import/export statements (i.e. is a script)
// convert it into a module by adding an empty export statement.
export {};