UNPKG

@s25digital/aa-central-registry

Version:

A package to work with Sahamati Central Registry in AA ecosystem

5 lines 158 B
export interface ICache { set(key: string, value: string): Promise<boolean>; get(key: string): Promise<string>; remove(key: string): Promise<boolean>; }