vdrag-topo-ui
Version:
18 lines (17 loc) • 338 B
TypeScript
type UnitOptions = {
label: string;
value: string;
};
export type ConfigProps = {
label: string;
min?: number;
max?: number;
step?: number;
key: string;
isShowUnitSelect?: boolean;
unitSelectOptions?: UnitOptions[];
precision?: number;
disabled?: boolean;
controls?: boolean;
};
export {};