@ant-design/react-native
Version:
基于蚂蚁金服移动设计规范的 React Native 组件库
13 lines (12 loc) • 358 B
TypeScript
export declare const CustomSyntheticEvent: {
stopPropagation: () => void;
preventDefault: () => void;
isPropagationStopped(): boolean;
emit(): void;
};
export default function useClickAway(onClickAway: () => void): {
stopPropagation: () => void;
preventDefault: () => void;
isPropagationStopped(): boolean;
emit(): void;
}[];