Skip to content

Commit df68016

Browse files
committed
fix(compiler): remove unused export and unnecessary @internal from isUniqueSymbolDeclaration
1 parent 638c34f commit df68016

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

src/compiler/emitter.ts

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

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

0 commit comments

Comments
 (0)