001/*
002 * To change this license header, choose License Headers in Project Properties.
003 * To change this template file, choose Tools | Templates
004 * and open the template in the editor.
005 */
006package gwt.material.design.jscore.client.api.html;
007
008import jsinterop.annotations.JsType;
009
010/**
011 * Native StyleSheetList
012 * https://developer.mozilla.org/en-US/docs/Web/API/StyleSheetList
013 * 
014 * @author Cristian Rinaldi
015 */
016@JsType(isNative = true)
017public class StyleSheetList {
018    
019    public native StyleSheet item(int idx);
020    
021    public native int length();
022    
023}