@imbricate/core
Version:
Imbricate Core, Notebook for Engineers
13 lines (12 loc) • 496 B
TypeScript
/**
* @author WMXPY
* @namespace Error
* @description Static Feature Not Supported
*/
import { IMBRICATE_STATIC_FEATURE } from "../../static/feature";
import { ImbricateStaticError } from "./static-error";
export declare class ImbricateStaticFeatureNotSupportedError extends ImbricateStaticError {
static withFeature(feature: IMBRICATE_STATIC_FEATURE): ImbricateStaticFeatureNotSupportedError;
static readonly TYPE: string;
protected constructor(message: string, reason?: any);
}