@janiscommerce/ui-native
Version:
components library for Janis app
15 lines (14 loc) • 530 B
TypeScript
import React, { Ref } from 'react';
import { SwipeListProps } from '../../molecules/SwipeList';
import BottomSheet from '@gorhom/bottom-sheet';
interface SwipeItemSelectionListProps extends Partial<SwipeListProps> {
ref?: Ref<BottomSheet>;
data: any[];
radioButton?: boolean;
multiselect?: boolean;
leftSelection?: boolean;
rightSelection?: boolean;
onSelection?: (id: string) => {};
}
declare const SwipeItemSelectionList: React.FC<SwipeItemSelectionListProps>;
export default SwipeItemSelectionList;