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 FrameRate { 009 010 @JsProperty 011 public double ideal; 012 013 @JsProperty 014 public double max; 015}