We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 638c34f commit df68016Copy full SHA for df68016
src/compiler/emitter.ts
@@ -431,8 +431,7 @@ import {
431
import * as performance from "./_namespaces/ts.performance.js";
432
const brackets = createBracketsMap();
433
434
-/** @internal */
435
-export function isUniqueSymbolDeclaration(node: VariableDeclarationList, checker: TypeChecker): boolean {
+function isUniqueSymbolDeclaration(node: VariableDeclarationList, checker: TypeChecker): boolean {
436
return node.declarations.some((decl: VariableDeclaration) => {
437
// 1. If type is explicitly written, handle as before
438
const typeNode: TypeNode | undefined = decl.type;
0 commit comments