feat(api-server): Improved api-server volume and like/dislike state (#3592)

Co-authored-by: Copilot <175728472+Copilot@users.noreply.github.com>
Co-authored-by: rewhex <gitea@cluser.local>
Co-authored-by: JellyBrick <shlee1503@naver.com>
This commit is contained in:
REWHEX
2025-09-05 18:59:39 +04:00
committed by GitHub
parent 96ea114335
commit 8b10872e83
7 changed files with 117 additions and 23 deletions

View File

@ -45,6 +45,11 @@ export enum LikeType {
Like = 'LIKE',
}
export interface VolumeState {
state: number;
isMuted: boolean;
}
export interface MultiSelect {
multiSelectedItems: Entities;
latestMultiSelectIndex: number;