@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>
16 lines (15 loc) • 453 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.Scope = void 0;
const ErrorBuilder_1 = require("../ErrorBuilder");
/**
* Specifies the scope of Bean or Beans when applied on {@link Configuration @Configuration} level.
*
* @docs https://clawject.com/docs/fundamentals/scope
*
* @public
*/
const Scope = () => {
throw ErrorBuilder_1.ErrorBuilder.usageWithoutConfiguredDI('@Scope');
};
exports.Scope = Scope;