UNPKG

ajsfw

Version:
13 lines (12 loc) 585 B
import * as resources from "ajsfw/resources"; import { IStateManager } from "./IStateManager"; export declare class StateManager implements IStateManager { private __resourceManager; constructor(resourceManager: resources.IResourceManager); setAppState(key: string, value: string): Promise<void>; getAppState(key: string): Promise<string>; removeAppState(key: string): Promise<void>; setSessionState(key: string, value: string): Promise<void>; getSessionState(key: string): Promise<string>; removeSessionState(key: string): Promise<void>; }