aimpress-chatbot/node_modules/@azure/msal-common/dist/error/CacheError.d.ts
“SamoilenkoVadym” 55445dbc86
Some checks failed
Build and deploy Node.js app to Azure Web App - ChatBot2222 / build (push) Has been cancelled
Build and deploy Node.js app to Azure Web App - ChatBot2222 / deploy (push) Has been cancelled
Deploy bot to Azure
2025-04-27 19:55:19 +01:00

21 lines
No EOL
582 B
TypeScript

import * as CacheErrorCodes from "./CacheErrorCodes.js";
export { CacheErrorCodes };
export declare const CacheErrorMessages: {
cache_quota_exceeded: string;
cache_error_unknown: string;
};
/**
* Error thrown when there is an error with the cache
*/
export declare class CacheError extends Error {
/**
* Short string denoting error
*/
errorCode: string;
/**
* Detailed description of error
*/
errorMessage: string;
constructor(errorCode: string, errorMessage?: string);
}
//# sourceMappingURL=CacheError.d.ts.map