mirror of
https://github.com/tapframe/NuvioStreaming.git
synced 2026-05-01 05:04:33 +00:00
26 lines
No EOL
509 B
TypeScript
26 lines
No EOL
509 B
TypeScript
import { ParamListBase } from '@react-navigation/native';
|
|
|
|
export interface RootStackParamList extends ParamListBase {
|
|
Home: undefined;
|
|
Details: {
|
|
id: string;
|
|
type: 'movie' | 'series';
|
|
};
|
|
Episodes: {
|
|
id: string;
|
|
type: 'series';
|
|
};
|
|
Streams: {
|
|
id: string;
|
|
type: 'movie' | 'series';
|
|
episodeId?: string;
|
|
};
|
|
Player: {
|
|
id: string;
|
|
type: 'movie' | 'series';
|
|
title?: string;
|
|
poster?: string;
|
|
stream?: string;
|
|
};
|
|
[key: string]: undefined | object;
|
|
}
|