react-native-unit-components
Version:
Unit React Native components
23 lines • 912 B
TypeScript
import React from 'react';
import type { UNOnLoadResponse } from '../../types/shared';
import type { UNActivityOnLoadData } from '../../types/shared/activity.types';
import type { UNActivityComponentPaginationType } from '../../types/shared';
export interface UNActivityComponentProps {
customerToken: string;
accountId?: string;
queryFilter?: string;
theme?: string;
language?: string;
hideFilterButton?: boolean;
hideTitle?: boolean;
hideBackToTop?: boolean;
paginationType?: UNActivityComponentPaginationType;
transactionsPerPage?: number;
onLoad?: (response: UNOnLoadResponse<UNActivityOnLoadData>) => void;
}
export interface UNActivityRef {
refresh: () => void;
}
declare const _default: React.ForwardRefExoticComponent<UNActivityComponentProps & React.RefAttributes<UNActivityRef>>;
export default _default;
//# sourceMappingURL=UNActivityComponent.d.ts.map