UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

13 lines (12 loc) 487 B
/** * @author WMXPY * @namespace Error * @description Feature Not Supported */ import { IMBRICATE_DOCUMENT_FEATURE } from "../../document/feature"; import { DocumentError } from "./document-error"; export declare class ImbricateDocumentFeatureNotSupportedError extends DocumentError { static withFeature(feature: IMBRICATE_DOCUMENT_FEATURE): ImbricateDocumentFeatureNotSupportedError; static readonly TYPE: string; protected constructor(message: string, reason?: any); }