13 lines
192 B
TypeScript
13 lines
192 B
TypeScript
import type { Image } from "@slovo/models/image";
|
|
|
|
export type Episode = {
|
|
title: string,
|
|
link: URL,
|
|
duration: string,
|
|
description: string,
|
|
explicit: boolean,
|
|
|
|
image?: Image,
|
|
};
|
|
|