UNPKG

react-native-gifted-chat

Version:
18 lines (15 loc) 435 B
// @flow import { Component } from 'react' import type { User } from './types' import type { ImageStyleProp, TextStyleProp, } from 'react-native/Libraries/StyleSheet/StyleSheet' export type GiftedAvatarProps = $ReadOnly<{| user?: User, avatarStyle?: ImageStyleProp, textStyle?: TextStyleProp, onPress: any => void, onLongPress: any => void, |}> export default class GiftedAvatar extends Component<GiftedAvatarProps> {}