mirror of
https://github.com/sbondCo/Watcharr.git
synced 2026-06-23 04:10:07 +00:00
12 lines
138 B
TypeScript
12 lines
138 B
TypeScript
export interface Content {
|
|
/**
|
|
* Title of content.
|
|
*/
|
|
title: string;
|
|
|
|
/**
|
|
* URL to poster image.
|
|
*/
|
|
poster: string;
|
|
}
|