radiostasis/src/Model.ts

21 lines
262 B
TypeScript

type Series = {
slug: string;
title: string;
cover: string;
};
type Episode = {
id: string;
series: Series;
slug: string;
title: string;
file: string;
length: string;
size: number;
};
type UrlResponse = {
url: string;
token: string;
};