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.

13 lines (12 loc) 766 B
import type { GenericControllerInstance, InjectorFunctionParameter, RequestConfigControllerUser } from '../../types/interfaces'; import { AbstractAction } from './AbstractAction'; import type { Context } from '../../http/Context'; import type { Injector } from '../Injector'; import type { Session } from '../../security/Session'; export declare class SessionAction extends AbstractAction { protected readonly loadedUser: RequestConfigControllerUser; protected readonly context: Context; protected injectedSessions: Session[]; constructor(injector: Injector, context: Context, loadedUser: RequestConfigControllerUser, injectedSessions: Session[]); run(instance: GenericControllerInstance, method: string): Promise<InjectorFunctionParameter[]>; }