UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

13 lines (12 loc) 478 B
/** * @author WMXPY * @namespace Error_Origin * @description Feature Not Supported */ import { IMBRICATE_ORIGIN_FEATURE } from "../../origin/feature"; import { OriginError } from "./origin-error"; export declare class ImbricateOriginFeatureNotSupportedError extends OriginError { static withFeature(feature: IMBRICATE_ORIGIN_FEATURE): ImbricateOriginFeatureNotSupportedError; static readonly TYPE: string; protected constructor(message: string, reason?: any); }