react-native-swipe-list
Version:
<!--[![Build Status][build-badge]][build]--> [![Version][version-badge]][package] ![Supports iOS and Android][support-badge] [![MIT License][license-badge]][license]
12 lines • 511 B
TypeScript
import React from 'react';
declare type Props<ItemT> = {
info: ItemT;
renderLeftActions?: (info: any) => React.ReactNode;
renderRightActions?: (info: any) => React.ReactNode;
isScrolling: boolean;
closeOnScroll: boolean;
children?: React.ReactElement | null;
};
export declare const SwipeableRow: <ItemT extends {}>({ info, renderLeftActions, renderRightActions, children, closeOnScroll, isScrolling, }: Props<ItemT>) => JSX.Element;
export {};
//# sourceMappingURL=SwipeableRow.d.ts.map