@lucidcms/core
Version:
The core of the Lucid CMS. It's responsible for spinning up the API and serving the CMS.
12 lines (11 loc) • 436 B
text/typescript
import { Config } from "../../types/config.mjs";
import { EmailAdapterInstance } from "./types.mjs";
//#region src/libs/email/is-simulated.d.ts
/** Resolve whether Lucid should skip sending through the configured email adapter. */
declare const isEmailSimulated: (context: {
config: Config;
email: EmailAdapterInstance;
}) => boolean;
//#endregion
export { isEmailSimulated as default };
//# sourceMappingURL=is-simulated.d.mts.map