bytesized.tv.web.constants
Version:
Common constants used in ByteSized.TV
36 lines (31 loc) • 798 B
JavaScript
/* __.-._
* '-._"7' JediFocus
* /'.-c
* | /T Do. Or do not.
* _)_/LI There is no try.
*
* This project is a part of the “Byte-Sized JavaScript” videocasts.
* You can watch “Byte-Sized JavaScript” at: https://bytesized.tv/
*
* MIT Licensed — See LICENSE.md
*
* Send your comments, suggestions, and feedback to me@volkan.io
*/
declare module 'bytesized.tv.web.episode.types' {
declare type EpisodeDetailsProps = {
title: string,
episodeNumber: number,
id: string
};
declare type EpisodeDetailsBodyProps = {
title: string,
id: string
};
declare type EpisodeDetailsRoutedProps = {
match: { params: { id: string, episodeNumber: number } }
};
declare type EpisodeTranscriptProps = {
id: string,
html: string
};
}