UNPKG

react-native-ajora

Version:

The most complete AI agent UI for React Native

19 lines (17 loc) 402 B
export interface Thread { id: string; title: string; createdAt?: string; updatedAt?: string; // Legacy support for old field names created_at?: string; updated_at?: string; } export interface ThreadProps { isOpen: boolean; onClose: () => void; onThreadSelect: (thread: Thread) => void; onNewThread: () => void; containerStyle?: any; renderEmpty?: () => React.ReactElement; }