export interface StoreServices { } export interface StoreConstructor { new (options: object, api: StoreServices): StoreInstance; } export interface StoreInstance { get(key: string): Promise; put(key: string, value: string): Promise; del(key: string): Promise; }