ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
15 lines (14 loc) • 431 B
TypeScript
import * as ts from "typescript";
import { Node } from "./Node";
import { Identifier } from "./Identifier";
export declare type EntityName = Identifier | QualifiedName;
export declare class QualifiedName extends Node<ts.QualifiedName> {
/**
* Gets the left side of the qualified name.
*/
getLeft(): EntityName;
/**
* Gets the right identifier of the qualified name.
*/
getRight(): Identifier;
}