Skip to content

Commit

Permalink
fix(type-compiler): wrong import
Browse files Browse the repository at this point in the history
  • Loading branch information
marcj committed Oct 17, 2023
1 parent 12e4ca3 commit caad2b3
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/type-compiler/src/compiler.ts
Original file line number Diff line number Diff line change
Expand Up @@ -70,7 +70,7 @@ import type {
TypeReferenceNode,
UnionTypeNode,
} from 'typescript';
import ts, { isExpressionStatement } from 'typescript';
import ts from 'typescript';

import {
ensureImportIsEmitted,
Expand Down Expand Up @@ -147,6 +147,7 @@ const {
isTypeQueryNode,
isTypeReferenceNode,
isUnionTypeNode,
isExpressionStatement,
isVariableDeclaration,
getEffectiveConstraintOfTypeParameter,
getJSDocTags,
Expand Down

0 comments on commit caad2b3

Please sign in to comment.