UNPKG

@promptbook/openai

Version:

Promptbook: Turn your company's scattered knowledge into AI ready books

10 lines (9 loc) 277 B
/** * Signals that the requested operation could not be completed because the target already exists. * * @public exported from `@promptbook/core` */ export declare class ConflictError extends Error { readonly name = "ConflictError"; constructor(message: string); }