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.

10 lines (9 loc) 501 B
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 RequestContextAction extends AbstractAction { protected readonly context: Context; constructor(injector: Injector, context: Context); run(instance: GenericControllerInstance, method: string): InjectorFunctionParameter; }