mirror of
https://github.com/sct/overseerr.git
synced 2025-09-17 17:24:35 +02: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[];
|
|
}
|