UNPKG

@webgpt/sdk

Version:

WebGPT SDK is a TypeScript / JavaScript library for interacting with the WebGPT API.

8 lines (7 loc) 207 B
/** * This error indicates that task which you try to recover does not exist. */ export declare class NotFoundError extends Error { readonly name = "NotFoundError"; constructor(message: string); }