UNPKG

@btc-vision/bsi-common

Version:

Common library for OP_NET.

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