OpenMediaCenter/src/types/VideoTypes.ts

16 lines
208 B
TypeScript
Raw Normal View History

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