useOption.d.ts 198 B

1234567
  1. import type { IOptionProps } from './token';
  2. export declare function useOption(props: IOptionProps, { emit }: {
  3. emit: any;
  4. }): {
  5. hoverItem: () => void;
  6. selectOptionClick: () => void;
  7. };