mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 20:47:56 +08:00
12 lines
259 B
TypeScript
12 lines
259 B
TypeScript
|
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;
|
||
|
}
|