@cometchat/chat-uikit-react-native
Version:
Ready-to-use Chat UI Components for React Native
16 lines (15 loc) • 494 B
text/typescript
import { TextStyle } from 'react-native';
import { FontStyleInterface } from '../base';
import { CometChatDetailsOption } from './CometChatDetailsOption';
export interface CometChatDetailsTemplate {
id?: string | number;
title?: string;
titleColor?: string;
titleFont?: FontStyleInterface;
titleStyle?: TextStyle;
sectionSeparatorColor?: string;
itemSeparatorColor?: string;
hideSectionSeparator?: boolean;
hideItemSeparator?: boolean;
options?: CometChatDetailsOption[];
}