Home
last modified time | relevance | path

Searched refs:ActionFunction (Results 1 – 4 of 4) sorted by relevance

/expo/apps/native-component-list/src/components/FunctionDemo/
H A DActionButton.tsx4 import { ActionFunction } from './index.types';
13 action: ActionFunction;
14 onPress: (action: ActionFunction) => void;
H A Dindex.types.ts62 export type ActionFunction = (...args: any[]) => Promise<unknown> | unknown; alias
H A DFunctionDemo.tsx10 ActionFunction,
53 actions: ActionFunction | { name: string; action: ActionFunction }[];
147 async (action: ActionFunction) => {
/expo/apps/native-component-list/src/screens/Clipboard/
H A DClipboardScreen.tsx9 import { ActionFunction, Platform } from '../../components/FunctionDemo/index.types';
12 const withSupportedPlatforms = (platforms: Platform[], action: ActionFunction): ActionFunction =>