UNPKG

easy-antd-modal

Version:

二次开发, 简化 Ant Design Modal 的使用方式

7 lines (6 loc) 184 B
export interface Actions { setTrue: () => void; setFalse: () => void; toggle: () => void; } export default function useBoolean(defaultValue?: boolean): [boolean, Actions];