UNPKG

coinforbarter-react-native

Version:

CoinForBarter ReactNative Library - Integrate cryptocurrency payments for goods and services in your Mobile App

8 lines (7 loc) 211 B
export interface ReducerActionType<T, U> { type: T; payload: ReducerPayloadType<U>; } export declare type ReducerPayloadType<T, U = { [K in keyof T]: Pick<T, K>; }> = Partial<T> & U[keyof U];