UNPKG

uniforms-antd

Version:

Ant Design UI components for uniforms.

8 lines (7 loc) 158 B
/** Option type used in SelectField or RadioField */ export type Option<Value> = { disabled?: boolean; label?: string; key?: string; value: Value; };