feat: add 'screenshare' to MediaMode union for screen-share audio recording

Prepares the media type system to distinguish screenshare audio SSRCs
from mic voice SSRCs once the hookScreenShareAudio capture logic is
wired in.
This commit is contained in:
asepharyana
2026-08-20 15:29:22 +07:00
parent 20e991062c
commit 80248d4b7a
@@ -1,7 +1,7 @@
import type { Readable } from "node:stream";
import type { StreamType } from "@discordjs/voice";
export type MediaMode = "music";
export type MediaMode = "music" | "screenshare";
export type MediaSourceKind =
| "url"
| "local"