aboutsummaryrefslogtreecommitdiff
path: root/src/lib/Hololive/hololive.ts
blob: 4ba7e46edd8e1cb087100e81454725590dcda5bb (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
export interface ParseResult {
	lives: {
		time: Date;
		link: string;
		videoId: string;
		streamer: string;
		livePreviewImage: string;
		guests: string[];
		streaming: boolean;
	}[];
	dict: Record<string, string>;
}