implement powerful viewer count system

This commit is contained in:
2026-05-16 23:38:35 +03:30
parent 95d14f2cec
commit 799581ee52
19 changed files with 762 additions and 17 deletions

View File

@@ -56,6 +56,12 @@ export type BroadcastSummary = {
has_vod?: boolean;
};
export type ViewerStats = {
current: number;
peak: number;
refresh_interval_ms: number;
};
export type VodSummary = {
id: number;
title: string;