import {BaseStructure, ParameteredStructure, FunctionBodyWriteableStructure, DocumentationedStructure, OverloadSignaturedStructure} from "./../base"; import {ScopedStructure} from "./base"; import {ClassConstructorParameterStructure} from "./ClassConstructorParameterStructure"; export interface ClassConstructorStructure extends BaseStructure, ParameteredStructure, FunctionBodyWriteableStructure, ScopedStructure, DocumentationedStructure, OverloadSignaturedStructure { }