@promptbook/gemini
Version:
It's time for a paradigm shift. The future of software in plain English, French or Latin
10 lines (9 loc) • 309 B
TypeScript
/**
* This error type indicates that you try to use a feature that is not available in the current environment
*
* @public exported from `@promptbook/core`
*/
export declare class EnvironmentMismatchError extends Error {
readonly name = "EnvironmentMismatchError";
constructor(message: string);
}