UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

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