UNPKG

alapa

Version:

A cutting-edge web development framework designed to revolutionize the way developers build modern web applications.

14 lines (13 loc) 485 B
"use strict"; Object.defineProperty(exports, "__esModule", { value: true }); exports.withAlias = exports.AliasList = void 0; /* eslint-disable @typescript-eslint/no-explicit-any */ const interface_1 = require("../interface"); const login_required_1 = require("../security/auth/login-required"); exports.AliasList = new interface_1.Map({ auth: login_required_1.LoginRequired, }); const withAlias = (alias) => { exports.AliasList.addAll(alias); }; exports.withAlias = withAlias;