dinoloop-es8
Version:
A lightweight REST API Library for building scalable Node.js server-side applications powered by Typescript
14 lines (13 loc) • 359 B
TypeScript
import { IUserIdentity } from '../../providers';
/**
* UserIdentity principal context object
*/
export declare class UserIdentity extends IUserIdentity {
private data;
constructor();
set(key: string, val: any): void;
get(key: string): any;
contains(key: string): boolean;
clear(): void;
remove(key: string): void;
}