9 lines
570 B
TypeScript
9 lines
570 B
TypeScript
export declare const VIRTUAL_MODULE_ID = "astro:assets";
|
|
export declare const VIRTUAL_SERVICE_ID = "virtual:image-service";
|
|
export declare const VALID_INPUT_FORMATS: readonly ["jpeg", "jpg", "png", "tiff", "webp", "gif", "svg"];
|
|
/**
|
|
* Valid formats that our base services support.
|
|
* Certain formats can be imported (namely SVGs) but will not be processed.
|
|
*/
|
|
export declare const VALID_SUPPORTED_FORMATS: readonly ["jpeg", "jpg", "png", "tiff", "webp", "gif", "svg"];
|
|
export declare const VALID_OUTPUT_FORMATS: readonly ["avif", "png", "webp", "jpeg", "jpg", "svg"];
|