react-native-gifted-chat
Version:
The most complete chat UI for React Native
17 lines • 664 B
TypeScript
import React from 'react';
import { StyleProp, ViewStyle, TextStyle } from 'react-native';
export interface LoadEarlierMessagesProps {
isAvailable: boolean;
isLoading: boolean;
onPress: () => void;
isInfiniteScrollEnabled?: boolean;
label?: string;
containerStyle?: StyleProp<ViewStyle>;
wrapperStyle?: StyleProp<ViewStyle>;
textStyle?: StyleProp<TextStyle>;
activityIndicatorStyle?: StyleProp<ViewStyle>;
activityIndicatorColor?: string;
activityIndicatorSize?: number | 'small' | 'large';
}
export declare const LoadEarlierMessages: React.FC<LoadEarlierMessagesProps>;
//# sourceMappingURL=LoadEarlierMessages.d.ts.map