UNPKG

alpha-dic

Version:

Asynchronous dependency injection container

12 lines (11 loc) 406 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.Deprecated = void 0; const deprecated_1 = require("../middlewares/deprecated"); const Annotation_1 = require("./Annotation"); function Deprecated(deprecationNote) { return function (target) { Annotation_1.Annotation(deprecated_1.deprecated(deprecationNote))(target); }; } exports.Deprecated = Deprecated;