forgeplus-react/node_modules/ahooks/lib/useClickAway/index.d.ts

5 lines
247 B
TypeScript

import { BasicTarget } from '../utils/dom';
declare type EventType = MouseEvent | TouchEvent;
export default function useClickAway(onClickAway: (event: EventType) => void, target: BasicTarget | BasicTarget[], eventName?: string): void;
export {};