Files
Watcharr/src/types.ts
T
2023-03-11 22:56:29 +00:00

12 lines
138 B
TypeScript

export interface Content {
/**
* Title of content.
*/
title: string;
/**
* URL to poster image.
*/
poster: string;
}