UNPKG

@promptbook/gemini

Version:

It's time for a paradigm shift. The future of software in plain English, French or Latin

10 lines (9 loc) 302 B
/** * This error type indicates that the error should not happen and its last check before crashing with some other error * * @public exported from `@promptbook/core` */ export declare class UnexpectedError extends Error { readonly name = "UnexpectedError"; constructor(message: string); }