import IPart from "./IPart"; import AbstractPart from "./AbstractPart"; /** * IPartConstructor */ interface IPartConstructor { new (name: string, type: string, xml: string, parent: Map, options: Record): AbstractPart; } /** * IPartConstructor */ export default IPartConstructor;