Skip to content

Commit 39eea36

Browse files
committed
refactor: make isUniqueSymbolDeclaration internal (remove unused export)
1 parent 638c34f commit 39eea36

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/compiler/emitter.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -432,7 +432,7 @@ import * as performance from "./_namespaces/ts.performance.js";
432432
const brackets = createBracketsMap();
433433

434434
/** @internal */
435-
export function isUniqueSymbolDeclaration(node: VariableDeclarationList, checker: TypeChecker): boolean {
435+
function isUniqueSymbolDeclaration(node: VariableDeclarationList, checker: TypeChecker): boolean {
436436
return node.declarations.some((decl: VariableDeclaration) => {
437437
// 1. If type is explicitly written, handle as before
438438
const typeNode: TypeNode | undefined = decl.type;

0 commit comments

Comments
 (0)