Skip to content

Commit 52df34b

Browse files
committed
Fix lint
1 parent 7b660c8 commit 52df34b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/declarationEmitter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -67,7 +67,7 @@ namespace ts {
6767
let errorNameNode: DeclarationName;
6868
const emitJsDocComments = compilerOptions.removeComments ? noop : writeJsDocComments;
6969
const emit = compilerOptions.stripInternal ? stripInternal : emitNode;
70-
let needsDeclare: boolean = true;
70+
let needsDeclare = true;
7171

7272
let moduleElementDeclarationEmitInfo: ModuleElementDeclarationEmitInfo[] = [];
7373
let asynchronousSubModuleDeclarationEmitInfo: ModuleElementDeclarationEmitInfo[];

0 commit comments

Comments
 (0)