Skip to main content

Interface: AppCachesInterface

Defined in: src/utils/cache.ts:50

Predefined application cache collection interface.

Remarksโ€‹

Each property is a reusable TypedCache instance configured for a specific domain within the application. Consumers should treat these as long-lived, shared caches.

Propertiesโ€‹

generalโ€‹

readonly general: TypedCache<string, CacheValue>

Defined in: src/utils/cache.ts:55

General-purpose cache used for miscellaneous computed values and small application artifacts.


monitorTypesโ€‹

readonly monitorTypes: TypedCache<string, CacheValue>

Defined in: src/utils/cache.ts:60

Cache reserved for monitor type configurations and metadata.


uiHelpersโ€‹

readonly uiHelpers: TypedCache<string, CacheValue>

Defined in: src/utils/cache.ts:65

Cache for UI helper values and component-level ephemeral data.