14 lines
205 B
TypeScript
14 lines
205 B
TypeScript
/**
|
|
* type accepted by Tag component
|
|
*/
|
|
export interface TagType {
|
|
TagName: string;
|
|
TagId: number;
|
|
}
|
|
|
|
export interface ActorType {
|
|
Thumbnail: string;
|
|
Name: string;
|
|
ActorId: number;
|
|
}
|