MCPcopy Create free account
hub / github.com/ShaanCoding/makeread.me / CancelError

Class CancelError

frontend/openAPI/generated/core/CancelablePromise.ts:5–15  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

3/* tslint:disable */
4/* eslint-disable */
5export class CancelError extends Error {
6
7 constructor(message: string) {
8 super(message);
9 this.name = 'CancelError';
10 }
11
12 public get isCancelled(): boolean {
13 return true;
14 }
15}
16
17export interface OnCancel {
18 readonly isResolved: boolean;

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected