UNPKG

402 BTypeScriptView Raw
1export declare const VALID_LOADERS: readonly ["default", "imgix", "cloudinary", "akamai"];
2export declare type LoaderValue = typeof VALID_LOADERS[number];
3export declare type ImageConfig = {
4 deviceSizes: number[];
5 imageSizes: number[];
6 loader: LoaderValue;
7 path: string;
8 domains?: string[];
9 disableStaticImages: boolean;
10};
11export declare const imageConfigDefault: ImageConfig;