UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

6 lines (5 loc) 353 B
import { DocumentationableNodeStructure } from "./../base"; import { StatementedNodeStructure } from "./../statement"; import { SignaturedDeclarationStructure } from "./SignaturedDeclarationStructure"; export interface FunctionLikeDeclarationStructure extends SignaturedDeclarationStructure, DocumentationableNodeStructure, StatementedNodeStructure { }