Searched refs:ActionFunction (Results 1 – 4 of 4) sorted by relevance
4 import { ActionFunction } from './index.types';13 action: ActionFunction;14 onPress: (action: ActionFunction) => void;
62 export type ActionFunction = (...args: any[]) => Promise<unknown> | unknown; alias
10 ActionFunction,53 actions: ActionFunction | { name: string; action: ActionFunction }[];147 async (action: ActionFunction) => {
9 import { ActionFunction, Platform } from '../../components/FunctionDemo/index.types';12 const withSupportedPlatforms = (platforms: Platform[], action: ActionFunction): ActionFunction =>