UNPKG

424 BTypeScriptView Raw
1import { FunctionalComponent } from 'vue';
2import { OptionCoreData } from './interface';
3export interface OptionProps extends Omit<OptionCoreData, 'label'> {
4 /** Save for customize data */
5 [prop: string]: any;
6}
7export interface OptionFC extends FunctionalComponent<OptionProps> {
8 /** Legacy for check if is a Option Group */
9 isSelectOption: boolean;
10}
11declare const Option: OptionFC;
12export default Option;