UNPKG

@imbricate/core

Version:

Imbricate Core, Notebook for Engineers

10 lines (9 loc) 442 B
/** * @author WMXPY * @namespace Document_Property * @description Definition */ import { ImbricatePropertyKey } from "../../property/definition"; import { IImbricateProperty } from "../../property/interface"; import { IMBRICATE_PROPERTY_TYPE } from "../../property/type"; export type ImbricatePropertyTriageFunction<T extends IMBRICATE_PROPERTY_TYPE, Result> = (propertyKey: ImbricatePropertyKey, value: IImbricateProperty<T>) => Result;