UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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