mirror of
https://github.com/Radarr/Radarr
synced 2026-05-07 23:50:27 +02:00
7 lines
147 B
TypeScript
7 lines
147 B
TypeScript
interface MovieSearchPayload {
|
|
movieId: number;
|
|
}
|
|
|
|
type InteractiveSearchPayload = MovieSearchPayload;
|
|
|
|
export default InteractiveSearchPayload;
|