UNPKG

@maximai/maxim-js

Version:

Maxim AI JS SDK. Visit https://getmaxim.ai for more info.

9 lines (8 loc) 298 B
import { MaximCache } from "./cache"; export declare class MaximInMemoryCache implements MaximCache { private cache; getAllKeys(): Promise<string[]>; get(key: string): Promise<string | null>; set(key: string, value: string): Promise<void>; delete(key: string): Promise<void>; }