Files
OpenMediaCenter/src/types/VideoTypes.ts
T

16 lines
208 B
TypeScript
Raw Normal View History

2021-01-22 21:05:21 +00:00
/**
* type accepted by Tag component
*/
export interface TagType {
tag_name: string
tag_id: number
}
export interface ActorType {
thumbnail: string;
name: string;
actor_id: number;
}