mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02:00
7 lines
180 B
TypeScript
7 lines
180 B
TypeScript
import type Media from '../../entity/Media';
|
|
import { PaginatedResponse } from './common';
|
|
|
|
export interface MediaResultsResponse extends PaginatedResponse {
|
|
results: Media[];
|
|
}
|