UNPKG

htmldocs

Version:

<h1 align="center"> <img src="https://github.com/user-attachments/assets/655fa7f9-98e7-42ee-8cd0-bb9193f100e9" alt="htmldocs" width="100%" /> </h1>

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; }