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 11## 0.4.23
22
3+ * Update types for compatibility with the latest PostCSS.
4+
35* ** Potentially-breaking bug fix** : parenthesized, comma-separated lists are now
46 correctly wrapped in a ` ParenthesizedExpression ` .
57
Original file line number Diff line number Diff line change @@ -121,7 +121,12 @@ declare abstract class Node
121121 opts ?: Pick < postcss . WarningOptions , 'index' | 'word' > ,
122122 ) : postcss . Position ;
123123 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+ ) : {
125130 start : postcss . Position ;
126131 end : postcss . Position ;
127132 } ;
You can’t perform that action at this time.
0 commit comments