UNPKG

@qte/react-native-gifted-chat

Version:

Performant fork of react-native-gifted-chat with FlashList support

15 lines (14 loc) 707 B
import React from 'react'; import { StyleProp, ViewStyle, TextStyle } from 'react-native'; export interface LoadEarlierProps { isLoadingEarlier?: boolean; label?: string; containerStyle?: StyleProp<ViewStyle>; wrapperStyle?: StyleProp<ViewStyle>; textStyle?: StyleProp<TextStyle>; activityIndicatorStyle?: StyleProp<ViewStyle>; activityIndicatorColor?: string; activityIndicatorSize?: number | 'small' | 'large'; onLoadEarlier?(): void; } export declare function LoadEarlier({ isLoadingEarlier, onLoadEarlier, label, containerStyle, wrapperStyle, textStyle, activityIndicatorColor, activityIndicatorSize, activityIndicatorStyle, }: LoadEarlierProps): React.ReactElement;