UNPKG

@chamn/engine

Version:
5 lines (4 loc) 351 B
import { SetterBasicType, SetterObjType, SetterType } from '@chamn/model'; export declare const getSetterList: <T extends SetterBasicType = "">(setters?: SetterType<T>[]) => SetterObjType<T>[]; /** 根据值获取默认的 setter */ export declare const getDefaultSetterByValue: (value: any, setterList: SetterObjType[]) => SetterObjType | undefined;