11 lines
312 B
TypeScript
11 lines
312 B
TypeScript
// navigation.types.ts
|
|
|
|
import { ParamListBase } from '@react-navigation/native';
|
|
import { Conversation } from '@/app/lib/conversation';
|
|
|
|
export type RootStackParamList = {
|
|
LanguageSelection: undefined;
|
|
ConversationThread: undefined;
|
|
Settings: undefined;
|
|
Conversation: { conversation?: Conversation };
|
|
}; |