UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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