Skip to main content
Module

x/ts_morph/mod.ts>ModuleDeclaration

TypeScript Compiler API wrapper for static analysis and programmatic code changes.
Very Popular
Go to Latest
class ModuleDeclaration
extends ModuleDeclarationBase<ts.ModuleDeclaration>
import { ModuleDeclaration } from "https://deno.land/x/ts_morph@15.1.0/mod.ts";

Methods

Gets the namesapce declaration kind.

getDeclarationKindKeyword(): Node<ts.Node> | undefined

Gets the namespace or module keyword or returns undefined if it's global.

getName(): string

Gets the full name of the namespace.

Gets the name nodes or the string literal.

getParent(): NodeParentType<ts.ModuleDeclaration>
getParentOrThrow(): NonNullable<NodeParentType<ts.ModuleDeclaration>>

Gets the structure equivalent to this node.

hasModuleKeyword(): boolean

Gets if this namespace has a namespace keyword.

Gets if this namespace has a namespace keyword.

rename(newName: string, options?: RenameOptions): this

Renames the module name.

Note: The TS compiler does not update module declarations for string literal module names unfortunately.

set(structure: Partial<ModuleDeclarationStructure>): this

Sets the node from a structure.

Sets the namespace declaration kind.

setName(newName: string): this

Sets the name without renaming references.