UNPKG

vike

Version:

(Replaces Next.js/Nuxt) 🔨 Composable framework to build advanced applications with flexibility and stability.

16 lines (15 loc) • 325 B
export { getBetterError }; declare function getBetterError(err: unknown, modifications: { message?: string | { prepend?: string; append?: string; }; stack?: string; hideStack?: true; }): { message: string; stack: string; hideStack?: true; } & { getOriginalError: () => any; };