diff options
Diffstat (limited to 'src/parseScheduleHtml.ts')
| -rw-r--r-- | src/parseScheduleHtml.ts | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/parseScheduleHtml.ts b/src/parseScheduleHtml.ts index d4a44dc..522eaa5 100644 --- a/src/parseScheduleHtml.ts +++ b/src/parseScheduleHtml.ts @@ -69,7 +69,7 @@ function parseToLiveBlocks(html: string | Buffer): LiveBlock[] { return lives } -type StreamerImageDict = Record<string, string> +export type StreamerImageDict = Record<string, string> type ImageStreamerDict = Record<string, string> function nextStreamerImageDict(liveBlocks: LiveBlock[], oldDict: StreamerImageDict) { @@ -90,7 +90,7 @@ function reverseDict(dict: StreamerImageDict): ImageStreamerDict { return reversed } -interface LiveInfo { +export interface LiveInfo { time: Date link: string streamer: string |