13 lines
448 B
TypeScript
13 lines
448 B
TypeScript
import type { FunctionalComponent } from 'vue';
|
|
import type { DefaultOptionType } from '../vc-select/Select';
|
|
export interface OptionProps extends Omit<DefaultOptionType, 'label'> {
|
|
/** Save for customize data */
|
|
[prop: string]: any;
|
|
}
|
|
export interface OptionFC extends FunctionalComponent<OptionProps> {
|
|
/** Legacy for check if is a Option Group */
|
|
isSelectOption: boolean;
|
|
}
|
|
declare const Option: OptionFC;
|
|
export default Option;
|