@promptbook/azure-openai
Version:
Promptbook: Run AI apps in plain human language across multiple models and platforms
11 lines (10 loc) • 382 B
TypeScript
import type { really_any } from '../utils/organization/really_any';
/**
* This error type indicates that somewhere in the code non-Error object was thrown and it was wrapped into the `WrappedError`
*
* @public exported from `@promptbook/core`
*/
export declare class WrappedError extends Error {
readonly name = "WrappedError";
constructor(whatWasThrown: really_any);
}