Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

VideoColorSpace

interface VideoColorSpace {
readonly fullRange: boolean | null;
readonly matrix: VideoMatrixCoefficients | null;
readonly primaries: VideoColorPrimaries | null;
readonly transfer: VideoTransferCharacteristics | null;
}
var VideoColorSpace: {
prototype: VideoColorSpace;
}
;

§Properties

§
readonly fullRange: boolean | null
[src]
§
readonly matrix: VideoMatrixCoefficients | null
[src]
§
readonly primaries: VideoColorPrimaries | null
[src]
§
readonly transfer: VideoTransferCharacteristics | null
[src]

§Methods