Skip to main content
Module

x/evt/mod.ts>dom.MediaKeyStatusMap

💧EventEmitter's typesafe replacement
Latest
interface dom.MediaKeyStatusMap
import { type dom } from "https://deno.land/x/evt@v2.5.7/mod.ts";
const { MediaKeyStatusMap } = dom;

This EncryptedMediaExtensions API interface is a read-only map of media key statuses by key IDs.

Properties

readonly
size: number

Methods

get(keyId: BufferSource): MediaKeyStatus | undefined
has(keyId: BufferSource): boolean
forEach(callbackfn: (
value: MediaKeyStatus,
parent: MediaKeyStatusMap,
) => void
, thisArg?: any
): void