ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
10 lines (9 loc) • 313 B
TypeScript
import * as ts from "typescript";
import { Node } from "./../common";
import { ExpressionWithTypeArguments } from "./../type";
export declare class HeritageClause extends Node<ts.HeritageClause> {
/**
* Gets all the types for the heritage clause.
*/
getTypes(): ExpressionWithTypeArguments[];
}