UNPKG

core-mvc

Version:

Simple but powerful MVC framework for NodeJS.

9 lines (7 loc) 265 B
import { accessSymbol } from './runtime/accessSymbol'; export const access = () => // eslint-disable-next-line @typescript-eslint/no-explicit-any (target: any, name: string) => { Reflect.defineMetadata(accessSymbol, true, target, name); };