/** * Importing npm packages */ /** * Defining types */ /** * Declaring the constants */ export declare class InMemoryStore { private readonly store; private getOptionalArray; get(key: string): T | undefined; get(key: string, defaultValue: T): T; set(key: string, value: T): InMemoryStore; del(key: string): InMemoryStore; insert(key: string, value: T): InMemoryStore; remove(key: string, value: T): InMemoryStore; inc(key: string, value: number): number; } export declare const GlobalStore: InMemoryStore;