UNPKG

nestjs-resilience

Version:

A module for improving the reliability and fault-tolerance of your NestJS applications

13 lines (12 loc) 238 B
import { Keyv } from 'keyv'; export interface ResilienceModuleOptions { /** * The store to use for caching. * @deprecated */ store?: Keyv; /** * The store to use for caching. */ stores?: Keyv[]; }