11 lines
172 B
TypeScript
11 lines
172 B
TypeScript
type Episode = {
|
|
title: string,
|
|
link: string,
|
|
description: string,
|
|
duration: string,
|
|
length: number,
|
|
explicit: boolean,
|
|
};
|
|
|
|
export default Episode;
|