mirror of
https://github.com/seerr-team/seerr.git
synced 2025-12-24 08:08:50 -05:00
7 lines
187 B
TypeScript
7 lines
187 B
TypeScript
import type Issue from '@server/entity/Issue';
|
|
import type { PaginatedResponse } from './common';
|
|
|
|
export interface IssueResultsResponse extends PaginatedResponse {
|
|
results: Issue[];
|
|
}
|