UNPKG

react-email

Version:

A live preview of your emails right in your browser.

12 lines (11 loc) 271 B
/** * An object that mimics the structure of the Error class, * we just can't use the Error class here because server actions can't * return classes */ export interface ErrorObject { name: string; stack: string | undefined; cause: unknown; message: string; }