UNPKG

218 BTypeScriptView Raw
1export declare type TMapPressed = {
2 isPressed?: boolean;
3 onPressIn?: () => void;
4 onPressOut?: () => void;
5};
6export declare const mapPressed: <P extends TMapPressed>(props: P) => P & Required<TMapPressed>;