Skip to content

Instantly share code, notes, and snippets.

@ankitamasand
Created October 23, 2020 08:17
export interface KeyValueCache {
get(key: string): Promise<string | undefined>;
set(key: string, value: string, options?: { ttl?: number }): Promise<void>;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment