useAction.d.ts 290 B

1234
  1. import type { ActionType } from '../interface';
  2. type ActionTypes = ActionType | ActionType[];
  3. export default function useAction(mobile: boolean, action: ActionTypes, showAction?: ActionTypes, hideAction?: ActionTypes): [showAction: Set<ActionType>, hideAction: Set<ActionType>];
  4. export {};