UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

12 lines (11 loc) 461 B
/** * @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); }