UNPKG

@aplus-frontend/antdv

Version:

Vue basic component library maintained based on ant-design-vue

11 lines (10 loc) 270 B
import type { Key } from '../_util/type'; import type { RawValueType } from './BaseSelect'; export interface FlattenOptionData<OptionType> { label?: any; data: OptionType; key: Key; value?: RawValueType; groupOption?: boolean; group?: boolean; }