13 lines
377 B
TypeScript
13 lines
377 B
TypeScript
import { RouteProp } from '@react-navigation/native';
|
|
import { StackNavigationProp } from '@react-navigation/stack';
|
|
import { Dispatch } from 'redux';
|
|
|
|
export interface IBaseScreen<T extends Record<string, object | undefined>, S extends string> {
|
|
navigation: StackNavigationProp<T, S>;
|
|
route: RouteProp<T, S>;
|
|
dispatch: Dispatch;
|
|
theme: string;
|
|
}
|
|
|
|
export * from './redux';
|