flyerhq/react-native-firebase-chat-core

View on GitHub
example/src/types.ts

Summary

Maintainability
A
0 mins
Test Coverage
import { Room } from '@flyerhq/react-native-firebase-chat-core'

export type AuthStackParamList = {
  Login: undefined
  Register: undefined
}

export type MainStackParamList = {
  Chat: { room: Room }
  Rooms: undefined
}

export type RootStackParamList = {
  Auth: undefined
  Main: undefined
  UsersStack: undefined
}

export type UsersStackParamList = {
  Users: undefined
}