11 lines
318 B
Haxe
11 lines
318 B
Haxe
package js.html;
|
|
|
|
/**
|
|
The msGraphicsTrust() constructor returns an object that provides properties for info on protected video playback.
|
|
**/
|
|
@:native("MSGraphicsTrust") extern class MSGraphicsTrust {
|
|
function new();
|
|
final constrictionActive : Bool;
|
|
final status : String;
|
|
static var prototype : MSGraphicsTrust;
|
|
} |