@promptbook/remote-server
Version:
Promptbook: Create persistent AI agents that turn your company's scattered knowledge into action
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);
}