UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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