UNPKG

react-native-unit-components

Version:

Unit React Native components

18 lines 776 B
/// <reference types="react" /> import type { UNCardData, UNMultipleCardsComponentPaginationType, UNMultipleCardsOnLoadData, UNOnLoadResponse } from '../../types/shared'; export interface UNMultipleCardsComponentProps { customerToken: string; paginationType?: UNMultipleCardsComponentPaginationType; cardsPerPage?: number; disableCardClick?: boolean; theme?: string; language?: string; queryFilter?: string; hideTitle?: boolean; hideBackToTop?: boolean; onLoad?: (response: UNOnLoadResponse<UNMultipleCardsOnLoadData>) => void; onCardClicked?: (card: UNCardData) => void; } declare const _default: (props: UNMultipleCardsComponentProps) => JSX.Element; export default _default; //# sourceMappingURL=UNMultipleCardsComponent.d.ts.map