@promptbook/remote-client
Version:
Promptbook: Turn your company's scattered knowledge into AI ready books
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);
}