UNPKG

@visulima/email

Version:

A comprehensive email library with multi-provider support, crypto utilities, and template engines

11 lines (10 loc) 370 B
import EmailError from "./email-error.d.ts"; /** * Error for missing required options * @param component The component name where the error occurred * @param name The name(s) of the missing required option(s) */ declare class RequiredOptionError extends EmailError { constructor(component: string, name: string | string[]); } export default RequiredOptionError;