8 lines
230 B
TypeScript
8 lines
230 B
TypeScript
import type { OptionV2EmitFn, OptionV2Props } from './defaults';
|
|
export declare function useOption(props: OptionV2Props, { emit }: {
|
|
emit: OptionV2EmitFn;
|
|
}): {
|
|
hoverItem: () => void;
|
|
selectOptionClick: () => void;
|
|
};
|