feat: make author clickable
This commit is contained in:
12
lib/types.ts
12
lib/types.ts
@@ -34,6 +34,18 @@ export interface TMDBSeries {
|
||||
vote_count: number;
|
||||
}
|
||||
|
||||
export type GenericResource = {
|
||||
name: string;
|
||||
id: string;
|
||||
type: keyof typeof resources;
|
||||
meta?: {
|
||||
image?: string;
|
||||
author?: string;
|
||||
average?: string;
|
||||
thumbnail?: string;
|
||||
};
|
||||
};
|
||||
|
||||
export interface GiteaOauthUser {
|
||||
sub: string;
|
||||
name: string;
|
||||
|
||||
Reference in New Issue
Block a user