also adds site webmanifest for mobile icons and title changes for tv/movie pagespull/183/head
parent
886389a361
commit
0601b44687
@ -0,0 +1 @@
|
||||
{"name":"","short_name":"","icons":[{"src":"/android-chrome-192x192.png","sizes":"192x192","type":"image/png"},{"src":"/android-chrome-512x512.png","sizes":"512x512","type":"image/png"}],"theme_color":"#ffffff","background_color":"#ffffff","display":"standalone"}
|
@ -0,0 +1,10 @@
|
||||
interface PageInfo {
|
||||
pages: number;
|
||||
page: number;
|
||||
results: number;
|
||||
pageSize: number;
|
||||
}
|
||||
|
||||
export interface PaginatedResponse {
|
||||
pageInfo: PageInfo;
|
||||
}
|
@ -1,11 +1,6 @@
|
||||
import type Media from '../../entity/Media';
|
||||
import { PaginatedResponse } from './common';
|
||||
|
||||
export interface MediaResultsResponse {
|
||||
pageInfo: {
|
||||
pages: number;
|
||||
page: number;
|
||||
results: number;
|
||||
pageSize: number;
|
||||
};
|
||||
export interface MediaResultsResponse extends PaginatedResponse {
|
||||
results: Media[];
|
||||
}
|
||||
|
@ -0,0 +1,6 @@
|
||||
import type { PaginatedResponse } from './common';
|
||||
import type { MediaRequest } from '../../entity/MediaRequest';
|
||||
|
||||
export interface RequestResultsResponse extends PaginatedResponse {
|
||||
results: MediaRequest[];
|
||||
}
|
Loading…
Reference in new issue