Skip to content

Commit eef8705

Browse files
committed
Fix lint error
1 parent 164c2e9 commit eef8705

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/builderState.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -259,7 +259,7 @@ namespace ts {
259259
/**
260260
* Returns true if oldState is reusable, that is the emitKind = module/non module has not changed
261261
*/
262-
export function canReuseOldState(newReferencedMap: BuilderState.TwoWayMap<Path, Path> | undefined, oldState: Readonly<ReusableBuilderState> | undefined) {
262+
export function canReuseOldState(newReferencedMap: TwoWayMap<Path, Path> | undefined, oldState: Readonly<ReusableBuilderState> | undefined) {
263263
return oldState && !oldState.referencedMap === !newReferencedMap;
264264
}
265265

0 commit comments

Comments
 (0)