react-native-ajora
Version:
The most complete AI agent UI for React Native
17 lines (16 loc) • 385 B
TypeScript
export interface Thread {
id: string;
title: string;
createdAt?: string;
updatedAt?: string;
created_at?: string;
updated_at?: string;
}
export interface ThreadProps {
isOpen: boolean;
onClose: () => void;
onThreadSelect: (thread: Thread) => void;
onNewThread: () => void;
containerStyle?: any;
renderEmpty?: () => React.ReactElement;
}