001package gwt.material.design.jscore.client.api.media;
002
003import jsinterop.annotations.JsPackage;
004import jsinterop.annotations.JsProperty;
005import jsinterop.annotations.JsType;
006
007@JsType(isNative = true, name = "Object", namespace = JsPackage.GLOBAL)
008public class MediaTrackConstraints {
009
010    @JsProperty
011    public long width;
012
013    @JsProperty
014    public long height;
015
016    @JsProperty
017    public String facingMode;
018
019    @JsProperty
020    public FrameRate frameRate;
021
022    @JsProperty
023    public double aspectRatio;
024}