mirror of
https://github.com/agregarr/agregarr.git
synced 2026-01-09 07:45:17 +08:00
13 lines
327 B
TypeScript
13 lines
327 B
TypeScript
import type Media from '@server/entity/Media';
|
|
import type { User } from '@server/entity/User';
|
|
import type { PaginatedResponse } from './common';
|
|
|
|
export interface UserResultsResponse extends PaginatedResponse {
|
|
results: User[];
|
|
}
|
|
|
|
export interface UserWatchDataResponse {
|
|
recentlyWatched: Media[];
|
|
playCount: number;
|
|
}
|