File tree Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Expand file tree Collapse file tree 2 files changed +13
-2
lines changed Original file line number Diff line number Diff line change @@ -1819,9 +1819,12 @@ declare var CryptoKeyPair: {
1819
1819
};
1820
1820
1821
1821
interface CSS {
1822
- supports(property: string, value? : string): boolean ;
1822
+ escape( value: string): string ;
1823
1823
}
1824
- declare var CSS: CSS;
1824
+
1825
+ declare var CSS: {
1826
+ supports(property: string, value?: string): boolean;
1827
+ };
1825
1828
1826
1829
interface CSSConditionRule extends CSSGroupingRule {
1827
1830
conditionText: string;
Original file line number Diff line number Diff line change 2980
2980
"signatures" : [
2981
2981
" animate(keyframes: AnimationKeyFrame | AnimationKeyFrame[], options: number | AnimationOptions): Animation"
2982
2982
]
2983
+ },
2984
+ {
2985
+ "kind" : " method" ,
2986
+ "name" : " escape" ,
2987
+ "interface" : " CSS" ,
2988
+ "signatures" : [
2989
+ " escape(value: string): string"
2990
+ ]
2983
2991
}
2984
2992
]
You can’t perform that action at this time.
0 commit comments