1
This commit is contained in:
+5
@@ -0,0 +1,5 @@
|
||||
import type { ActionType } from '../interface';
|
||||
type InternalActionType = ActionType | 'touch';
|
||||
type ActionTypes = InternalActionType | InternalActionType[];
|
||||
export default function useAction(action: ActionTypes, showAction?: ActionTypes, hideAction?: ActionTypes): [showAction: Set<InternalActionType>, hideAction: Set<InternalActionType>];
|
||||
export {};
|
||||
Reference in New Issue
Block a user