UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

5 lines (4 loc) 402 B
import { NamedStructure, TypedNodeStructure, TypeParameteredNodeStructure, DocumentationableNodeStructure, AmbientableNodeStructure, ExportableNodeStructure } from "./../base"; export interface TypeAliasDeclarationStructure extends NamedStructure, TypedNodeStructure, TypeParameteredNodeStructure, DocumentationableNodeStructure, AmbientableNodeStructure, ExportableNodeStructure { type: string; }