From 1b39a6dd6698cd2cd2f9c6128038fa3692098949 Mon Sep 17 00:00:00 2001 From: Ron Buckton Date: Wed, 17 Apr 2024 18:29:57 -0400 Subject: [PATCH] Remove unnecessary import alias for SymbolObject --- src/compiler/binder.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/compiler/binder.ts b/src/compiler/binder.ts index 38451367bb6..a0c018d5615 100644 --- a/src/compiler/binder.ts +++ b/src/compiler/binder.ts @@ -321,7 +321,7 @@ import { WithStatement, } from "./_namespaces/ts"; import * as performance from "./_namespaces/ts.performance"; -import { SymbolObject as SymbolObject } from "./objectConstructors"; +import { SymbolObject } from "./objectConstructors"; /** @internal */ export const enum ModuleInstanceState {