UNPKG

@btc-vision/bsi-common

Version:

Common library for OP_NET.

5 lines (4 loc) 139 B
export interface ICacheStrategy<T> { get(key: string): Promise<T | undefined>; set(key: string, value: T, ttl: number): boolean; }