OpenMediaCenter/src/types/VideoTypes.ts
2021-01-22 21:05:21 +00:00

16 lines
208 B
TypeScript

/**
* type accepted by Tag component
*/
export interface TagType {
tag_name: string
tag_id: number
}
export interface ActorType {
thumbnail: string;
name: string;
actor_id: number;
}