mirror of
https://github.com/seerr-team/seerr.git
synced 2026-01-27 00:41:18 -05:00
* build: bump deps and add some new eslint rules * refactor: run eslint --fix on code to convert to type imports where possible
7 lines
185 B
TypeScript
7 lines
185 B
TypeScript
import type Issue from '../../entity/Issue';
|
|
import type { PaginatedResponse } from './common';
|
|
|
|
export interface IssueResultsResponse extends PaginatedResponse {
|
|
results: Issue[];
|
|
}
|