UNPKG

@amirmarmul/waba-common

Version:

![GitHub release](https://img.shields.io/github/v/release/amirmarmul/waba-common?style=flat-square)

9 lines (8 loc) 204 B
/** * @deprecated */ export interface Cache { get<T>(key: string): Promise<T | null>; set(key: string, data: unknown, ttl?: number): Promise<void>; invalidate(key: string): Promise<void>; }