ts-simple-ast
Version:
TypeScript compiler wrapper for AST navigation and code generation.
7 lines (6 loc) • 586 B
TypeScript
import { StaticableNodeStructure, DecoratableNodeStructure, AbstractableNodeStructure, ScopedNodeStructure, BodiedNodeStructure, PropertyNamedNodeStructure } from "./../base";
import { FunctionLikeDeclarationStructure } from "./../function";
export interface SetAccessorDeclarationStructure extends SetAccessorDeclarationSpecificStructure, PropertyNamedNodeStructure, StaticableNodeStructure, DecoratableNodeStructure, AbstractableNodeStructure, ScopedNodeStructure, FunctionLikeDeclarationStructure, BodiedNodeStructure {
}
export interface SetAccessorDeclarationSpecificStructure {
}