Skip to content

Type Alias: CacheMode

ts
type CacheMode = "eager" | "manual";

Defined in: packages/core/src/configBound.ts:56

The mode of the cache for the ConfigBound.

  • eager: The cache is populated when the ConfigBound is created.
  • manual: The cache is populated manually by calling populateCache.