Skip to content

Commit 69b11ab

Browse files
committed
fix imports
1 parent eb6aaf3 commit 69b11ab

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

src/services/codefixes/fixJSDocTypes.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,13 @@
11
import { Diagnostics } from "../../compiler/diagnosticInformationMap.generated";
2+
import { append } from "../../compiler/core";
23
import {
3-
append,
44
AsExpression,
55
CallSignatureDeclaration,
66
ConstructSignatureDeclaration,
77
DiagnosticMessage,
88
FunctionDeclaration,
99
GetAccessorDeclaration,
1010
IndexSignatureDeclaration,
11-
isJSDocNullableType,
1211
MappedTypeNode,
1312
MethodDeclaration,
1413
MethodSignature,
@@ -36,6 +35,7 @@ import {
3635
import { ChangeTracker } from "../textChanges";
3736
import { CodeFixAction } from "../types";
3837
import { getTokenAtPosition } from "../utilities";
38+
import { isJSDocNullableType } from "../../compiler/factory/nodeTests";
3939

4040
const fixIdPlain = "fixJSDocTypes_plain";
4141
const fixIdNullable = "fixJSDocTypes_nullable";

0 commit comments

Comments
 (0)