UNPKG

@kirz/react-native-toolkit

Version:

Toolkit to speed up React Native development

6 lines (4 loc) 169 B
export type GenericFunction = (...args: any[]) => any; export type FunctionWrapper<F extends GenericFunction> = ( ...args: Parameters<F> ) => Promise<ReturnType<F>>;