feat: update media input guidance

Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
This commit is contained in:
MythEclipse
2026-05-15 19:49:01 +07:00
parent c954cc0406
commit 5abe5cc39f
8 changed files with 757 additions and 14 deletions

View File

@@ -93,7 +93,12 @@ export interface AnalysisResult {
}
export type MediaMode = "music" | "screen";
export type MediaSourceKind = "url" | "local" | "youtube" | "spotify" | "search";
export type MediaSourceKind =
| "url"
| "local"
| "youtube"
| "spotify"
| "search";
export type MediaQueueItemStatus = "queued" | "playing" | "failed";
export interface MediaQueueItem {