UNPKG

openam-agent-custom

Version:

Customized ForgeRock AM Policy Agent for Node.js from Zoltan Tarcsay

10 lines (6 loc) 179 B
export interface Cache<T = any> { get(key: string): Promise<T>; put(key: string, value: T): Promise<void>; remove(key: string): Promise<void>; quit(): Promise<void>; }