File tree 2 files changed +2
-4
lines changed
packages/css-blocks/src/Block/BlockTree
2 files changed +2
-4
lines changed Original file line number Diff line number Diff line change 12
12
* @module Block/BlockTree/Inheritable
13
13
*/
14
14
import { ObjectDictionary } from "@opticss/util" ;
15
- import { whatever } from "@opticss/util" ;
16
15
17
16
import { SourceLocation } from "../../SourceLocation" ;
18
17
@@ -205,7 +204,7 @@ export abstract class Inheritable<
205
204
// TypeScript can't figure out that `this` is the `Self` so this private
206
205
// method casts it in a few places where it's needed.
207
206
private asSelf ( ) : Self {
208
- return < Self > < whatever > this ;
207
+ return < Self > < object > this ;
209
208
}
210
209
211
210
}
Original file line number Diff line number Diff line change 1
1
import { Attr } from "@opticss/element-analysis" ;
2
- import { whatever } from "@opticss/util" ;
3
2
4
3
import { OptionsReader } from "../../OptionsReader" ;
5
4
import { unionInto } from "../../util/unionInto" ;
@@ -116,7 +115,7 @@ export abstract class Style<
116
115
// TypeScript can't figure out that `this` is the `StyleType` so this private
117
116
// method casts it in a few places where it's needed.
118
117
private asStyle ( ) : Self {
119
- return < Self > < whatever > this ;
118
+ return < Self > < object > this ;
120
119
}
121
120
}
122
121
You can’t perform that action at this time.
0 commit comments