import {ComponentScopes} from "../../../enum" import {ConstructorType} from "../../type" export default class Scoper{ public cost: ConstructorType public scope: ComponentScopes constructor(cost: ConstructorType = Scoper, scope: ComponentScopes = ComponentScopes.SINGLETON){ this.cost = cost this.scope = scope } }