UNPKG

zents

Version:

ZenTS is a Node.js & TypeScript MVC-Framework for building rich web applications, released as free and open-source software under the MIT License. It is designed for building web applications with modern tools and design patterns.

6 lines (5 loc) 313 B
import type { GenericControllerInstance, InjectorFunctionParameter } from '../../types/interfaces'; import { AbstractAction } from './AbstractAction'; export declare class SecurityProviderAction extends AbstractAction { run(instance: GenericControllerInstance, method: string): InjectorFunctionParameter[]; }