@fesjs/fes-design
Version:
fes-design for PC
11 lines (10 loc) • 428 B
TypeScript
import type { SelectProps } from './props';
import type { OptionChildren, SelectOption } from './interface';
declare const _default: ({ props }: {
props: SelectProps;
}) => {
addOption: (option: OptionChildren, groupOption?: OptionChildren) => void;
removeOption: (id: number | string, groupOption: OptionChildren) => void;
flatBaseOptions: import("vue").ComputedRef<SelectOption[]>;
};
export default _default;