16 lines
208 B
TypeScript
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;
|
|
}
|