2022-01-01 22:36:05 +01:00
|
|
|
import { StackNavigationProp } from '@react-navigation/stack';
|
|
|
|
|
|
2020-08-28 16:28:49 +02:00
|
|
|
export interface ModalStackParams {
|
2021-12-31 15:04:37 +01:00
|
|
|
[key: string]: Record<string, unknown> | undefined;
|
2020-08-28 16:28:49 +02:00
|
|
|
SetJellyfinServer: undefined;
|
|
|
|
|
TrackPopupMenu: { trackId: string };
|
2022-01-01 22:36:05 +01:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
export type ModalNavigationProp = StackNavigationProp<ModalStackParams>;
|