Code Coverage
 
Lines
Functions and Methods
Classes and Traits
Total
n/a
0 / 0
n/a
0 / 0
CRAP
n/a
0 / 0
1<?php
2
3// AUTOMATICALLY GENERATED.  DO NOT EDIT.
4// Use `composer build` to regenerate.
5
6namespace Wikimedia\IDLeDOM;
7
8/**
9 * VideoTrack
10 *
11 * @see https://dom.spec.whatwg.org/#interface-videotrack
12 *
13 * @property string $id
14 * @property string $kind
15 * @property string $label
16 * @property string $language
17 * @property bool $selected
18 * @phan-forbid-undeclared-magic-properties
19 */
20interface VideoTrack {
21    /**
22     * @return string
23     */
24    public function getId(): string;
25
26    /**
27     * @return string
28     */
29    public function getKind(): string;
30
31    /**
32     * @return string
33     */
34    public function getLabel(): string;
35
36    /**
37     * @return string
38     */
39    public function getLanguage(): string;
40
41    /**
42     * @return bool
43     */
44    public function getSelected(): bool;
45
46    /**
47     * @param bool $val
48     */
49    public function setSelected( bool $val ): void;
50
51}