syber-lowcode-business-materials
Version:
syber-lowcode-business-materials
40 lines (39 loc) • 1.02 kB
TypeScript
declare function getFontSet(parentKeyName: any, hideInput?: boolean, hideColor?: boolean): any[];
declare function distanceSet(valueField: string, unitField: string, unitArray?: string[]): ({
title: string;
name: string;
supportVariable: boolean;
setter: {
componentName: string;
props: {
min: number;
max: number;
step: number;
options?: undefined;
};
initialValue: number;
};
} | {
title: string;
name: string;
supportVariable: boolean;
setter: {
componentName: string;
props: {
options: {
title: string;
value: string;
}[];
min?: undefined;
max?: undefined;
step?: undefined;
};
initialValue: string;
};
})[];
declare const _default: {
getFontSet: typeof getFontSet;
distanceSet: typeof distanceSet;
};
export default _default;
export { getFontSet, distanceSet };