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.
10 lines (9 loc) • 497 B
TypeScript
import type { GenericControllerInstance, InjectorFunctionParameter } from '../../types/interfaces';
import { AbstractAction } from './AbstractAction';
import type { Context } from '../../http/Context';
import type { Injector } from '../Injector';
export declare class AllContextAction extends AbstractAction {
protected readonly context: Context;
constructor(injector: Injector, context: Context);
run(instance: GenericControllerInstance, method: string): InjectorFunctionParameter;
}