UNPKG

ts-simple-ast

Version:

TypeScript compiler wrapper for AST navigation and code generation.

7 lines (6 loc) 586 B
import { StaticableNodeStructure, DecoratableNodeStructure, AbstractableNodeStructure, ScopedNodeStructure, BodiedNodeStructure, PropertyNamedNodeStructure } from "./../base"; import { FunctionLikeDeclarationStructure } from "./../function"; export interface GetAccessorDeclarationStructure extends GetAccessorDeclarationSpecificStructure, PropertyNamedNodeStructure, StaticableNodeStructure, DecoratableNodeStructure, AbstractableNodeStructure, ScopedNodeStructure, FunctionLikeDeclarationStructure, BodiedNodeStructure { } export interface GetAccessorDeclarationSpecificStructure { }