12 lines
339 B
TypeScript
12 lines
339 B
TypeScript
// Minimal MediaStream shim so packages can compile in isolated container environments
|
|
// This avoids requiring the full DOM lib in every package tsconfig.
|
|
declare global {
|
|
// Keep minimal surface area — expand if you rely on more MediaStream APIs
|
|
interface MediaStream {
|
|
id?: string
|
|
getTracks?: () => any[]
|
|
}
|
|
}
|
|
|
|
export {}
|