@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
14 lines (13 loc) • 572 B
text/typescript
import { QueueAdapterInstance } from "../types.mjs";
//#region src/libs/queue/adapters/passthrough.d.ts
type PassthroughQueueAdapterOptions = {
bypassImmediateExecution?: boolean;
};
/**
* A passthrough queue adapter that will only mock the queue, and execute the event handlers immediately
*/
declare function passthroughQueueAdapter(): QueueAdapterInstance;
declare function passthroughQueueAdapter(options: PassthroughQueueAdapterOptions): QueueAdapterInstance;
//#endregion
export { passthroughQueueAdapter as default };
//# sourceMappingURL=passthrough.d.mts.map