@mojaloop/inter-scheme-proxy-cache-lib
Version:
Common component, that provides scheme proxy caching mapping (ISPC)
10 lines (8 loc) • 304 B
TypeScript
declare class ProxyCacheError extends Error {
constructor(message: string);
static unsupportedProxyCacheType(): ProxyCacheError;
}
declare class ValidationError extends ProxyCacheError {
static invalidFormat(details?: string): ValidationError;
}
export { ProxyCacheError, ValidationError };