import { ExportSpecifier } from "https://dotland.deno.dev/x/ts_morph@17.0.0/ts_morph.d.ts";
Methods
getLocalTargetSymbol(): Symbol | undefined
Gets the local target symbol of the export specifier or undefined if it doesn't exist.
getLocalTargetSymbolOrThrow(message?: string | (() => string)): Symbol
Gets the local target symbol of the export specifier or throws if it doesn't exist.
getParent(): NodeParentType<ts.ExportSpecifier>
getParentOrThrow(message?: string | (() => string)): NonNullable<NodeParentType<ts.ExportSpecifier>>
removeAliasWithRename(): this
Removes the alias and renames any usages to the name of the export specifier.
renameAlias(alias: string): this
Sets the alias for the name being exported and renames all the usages.