export interface IAppSessionService { getValue(key: string): T; setValue(key: string, value: T): void; clearValue(key: string): void; getRequest(): TRequest; retrieveRequest(): TRequest; }