Type alias CachingOptions

CachingOptions: {
    key?: string | ((...args) => string);
    namespace?: string;
    strategy: "NOCACHE" | "HIT" | "IMMEDIATE";
}

type def

Type declaration

  • Optional key?: string | ((...args) => string)
  • Optional namespace?: string
  • strategy: "NOCACHE" | "HIT" | "IMMEDIATE"