File tree Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Expand file tree Collapse file tree 2 files changed +32
-0
lines changed Original file line number Diff line number Diff line change @@ -14295,6 +14295,16 @@ declare var StorageManager: {
14295
14295
new(): StorageManager;
14296
14296
};
14297
14297
14298
+ interface StyleMedia {
14299
+ type: string;
14300
+ matchMedium(mediaquery: string): boolean;
14301
+ }
14302
+
14303
+ declare var StyleMedia: {
14304
+ prototype: StyleMedia;
14305
+ new(): StyleMedia;
14306
+ };
14307
+
14298
14308
/** A single style sheet. CSS style sheets will further implement the more specialized CSSStyleSheet interface. */
14299
14309
interface StyleSheet {
14300
14310
disabled: boolean;
Original file line number Diff line number Diff line change 674
674
]
675
675
}
676
676
},
677
+ "StyleMedia" : {
678
+ "name" : " StyleMedia" ,
679
+ "exposed" : " Window" ,
680
+ "properties" : {
681
+ "property" : {
682
+ "type" : {
683
+ "name" : " type" ,
684
+ "overrideType" : " string"
685
+ }
686
+ }
687
+ },
688
+ "methods" : {
689
+ "method" : {
690
+ "matchMedium" : {
691
+ "name" : " matchMedium" ,
692
+ "overrideSignatures" : [
693
+ " matchMedium(mediaquery: string): boolean"
694
+ ]
695
+ }
696
+ }
697
+ }
698
+ },
677
699
"SVGElement" : {
678
700
"implements" : [
679
701
" GlobalEventHandlers" ,
You can’t perform that action at this time.
0 commit comments