File tree Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Expand file tree Collapse file tree 2 files changed +8
-1
lines changed Original file line number Diff line number Diff line change 1
1
## 0.4.23
2
2
3
+ * Update types for compatibility with the latest PostCSS.
4
+
3
5
* ** Potentially-breaking bug fix** : parenthesized, comma-separated lists are now
4
6
correctly wrapped in a ` ParenthesizedExpression ` .
5
7
Original file line number Diff line number Diff line change @@ -121,7 +121,12 @@ declare abstract class Node
121
121
opts ?: Pick < postcss . WarningOptions , 'index' | 'word' > ,
122
122
) : postcss . Position ;
123
123
positionInside ( index : number ) : postcss . Position ;
124
- rangeBy ( opts ?: Pick < postcss . WarningOptions , 'endIndex' | 'index' | 'word' > ) : {
124
+ rangeBy (
125
+ opts ?: Pick <
126
+ postcss . WarningOptions ,
127
+ 'end' | 'endIndex' | 'index' | 'start' | 'word'
128
+ > ,
129
+ ) : {
125
130
start : postcss . Position ;
126
131
end : postcss . Position ;
127
132
} ;
You can’t perform that action at this time.
0 commit comments