ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
17 lines (16 loc) • 326 B
TypeScript
import * as ts from "typescript";
/**
* JS doc tag info.
*/
export declare class JSDocTagInfo {
/** Gets the compiler JS doc tag info. */
readonly compilerObject: ts.JSDocTagInfo;
/**
* Gets the name.
*/
getName(): string;
/**
* Gets the text.
*/
getText(): string | undefined;
}