Files
dsProject/dsBase/WebRoot/html/cdn/lib/components/select-v2/src/useOption.d.ts
2025-08-14 15:45:08 +08:00

8 lines
198 B
TypeScript

import type { IOptionProps } from './token';
export declare function useOption(props: IOptionProps, { emit }: {
emit: any;
}): {
hoverItem: () => void;
selectOptionClick: () => void;
};