UNPKG

@clawject/di

Version:

<p align="center"> <a href="https://clawject.com/" target="_blank"><img src="https://clawject.com/img/logo.svg" align="center" alt="Clawject Logo" width="120" height="120" /></a> </p>

19 lines (18 loc) 546 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.ClawjectApplicationContextImpl = void 0; class ClawjectApplicationContextImpl { constructor(container) { this.container = container; } getExposedBean(beanName) { return this.container.getExposedBean(beanName); } getExposedBeans() { return this.container.getExposedBeans(); } destroy() { return this.container.destroy(); } } exports.ClawjectApplicationContextImpl = ClawjectApplicationContextImpl;