UNPKG

vdrag-topo-ui

Version:

17 lines (16 loc) 289 B
type OptionItem = { label: string; value: string; }; export type ConfigProps = { label: string; key: string; min?: number; max?: number; step?: number; precision?: number; options: OptionItem[]; placeholder?: string; unit: string; }; export {};