core-mvc
Version:
Simple but powerful MVC framework for NodeJS.
11 lines (10 loc) • 370 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
exports.access = void 0;
const accessSymbol_1 = require("./runtime/accessSymbol");
const access = () =>
// eslint-disable-next-line @typescript-eslint/no-explicit-any
(target, name) => {
Reflect.defineMetadata(accessSymbol_1.accessSymbol, true, target, name);
};
exports.access = access;