mirror of
https://github.com/Radarr/Radarr
synced 2025-12-30 20:24:06 +01:00
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
interface MovieSearchPayload {
|
|
movieId: number;
|
|
}
|
|
|
|
type InteractiveSearchPayload = MovieSearchPayload;
|
|
|
|
export default InteractiveSearchPayload;
|