@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
13 lines (12 loc) • 487 B
text/typescript
import { ImageProcessorInstance } from "../types.mjs";
//#region src/libs/image-processor/adapters/passthrough.d.ts
/**
* A passthrough image processor that leaves the original stream unchanged.
*
* This is used when no image processor is configured or the configured processor cannot be
* initialized.
*/
declare const passthroughImageProcessor: () => ImageProcessorInstance;
//#endregion
export { passthroughImageProcessor as default };
//# sourceMappingURL=passthrough.d.mts.map