UNPKG

@mojaloop/inter-scheme-proxy-cache-lib

Version:

Common component, that provides scheme proxy caching mapping (ISPC)

13 lines (11 loc) 453 B
declare const STORAGE_TYPES: { readonly redis: "redis"; readonly redisCluster: "redis-cluster"; readonly mysql: "mysql"; }; declare const storageTypeValues: ("redis" | "redis-cluster" | "mysql")[]; declare const ERROR_MESSAGES: { readonly unsupportedProxyCacheType: `Unsupported proxyCache type [possible values: ${string}]`; readonly invalidFormat: "Invalid format"; }; export { ERROR_MESSAGES, STORAGE_TYPES, storageTypeValues };