Skip to content

Type Alias: CacheModuleOptions<T>

ts
type CacheModuleOptions<T> = CacheOptions<T> & {
  isGlobal?: boolean;
};

Defined in: packages/cache/src/interfaces/cache-module.interface.ts:30

Options for configuring the Cache module.

Type Declaration

NameTypeDescriptionDefined in
isGlobal?booleanIf true, register CacheModule as a global module. Default falsepackages/cache/src/interfaces/cache-module.interface.ts:38

Type Parameters

Type ParameterDefault typeDescription
T extends StoreConfigRecordStoreConfigRecordStore-specific configuration type.

Released under the MIT License.