@unchainedshop/plugins
Version:
Official plugin collection for the Unchained Engine with payment, delivery, and pricing adapters
10 lines (9 loc) • 306 B
TypeScript
import { type IWorkerAdapter } from '@unchainedshop/core';
export declare const checkEmailInterceptionEnabled: () => boolean;
export declare const EmailWorkerPlugin: IWorkerAdapter<{
from?: string;
to?: string;
subject?: string;
[x: string]: any;
}, any>;
export default EmailWorkerPlugin;