UNPKG

@bitloops/bl-transpiler

Version:
22 lines 584 B
export class BoundedContextModuleBuilder { boundedContext; module; withBoundedContext(boundedContext) { this.boundedContext = boundedContext; return this; } withModule(module) { this.module = module; return this; } build() { const boundedContextModule = { boundedContextModule: { boundedContextName: this.boundedContext, moduleName: this.module, }, }; return boundedContextModule; } } //# sourceMappingURL=boundedContextModuleBuilder.js.map