aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Hololive/hololive.ts
blob: 6ad97430df7153275102e3a42dce4752538e68e5 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
export interface Live {
	time: Date;
	link: string;
	videoId: string;
	streamer: string;
	livePreviewImage: string;
	guests: string[];
	streaming: boolean;
}

export interface ParseResult {
	lives: Live[];
	dict: Record<string, string>;
}