Files
OpenMediaCenter/src/types/VideoTypes.ts
T

14 lines
203 B
TypeScript
Raw Normal View History

2021-01-22 21:05:21 +00:00
/**
* type accepted by Tag component
*/
export interface TagType {
2021-02-23 16:01:29 +00:00
TagName: string
TagId: number
2021-01-22 21:05:21 +00:00
}
export interface ActorType {
2021-02-23 16:01:29 +00:00
Thumbnail: string;
Name: string;
ActorId: number;
2021-01-22 21:05:21 +00:00
}