UNPKG

refun

Version:

A collection of React Hook-enabled functions that compose harmoniously with each other. Similar to `recompose`, but:

9 lines (8 loc) 309 B
export declare type TMapKeyboardFocused = { isKeyboardFocused?: boolean; onFocus?: () => void; onBlur?: () => void; onPressIn?: () => void; onPressOut?: () => void; }; export declare const mapKeyboardFocused: <P extends TMapKeyboardFocused>(props: P) => P & Required<TMapKeyboardFocused>;