UNPKG

dinoloop-es8

Version:

A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript

11 lines (10 loc) 315 B
/** * Contains information associated with request/user */ export declare abstract class IUserIdentity { abstract set(key: string, val: any): void; abstract get(key: string): any; abstract contains(key: string): boolean; abstract clear(): void; abstract remove(key: string): void; }