Files
powerpoint-toolbox/node_modules/@azure/msal-common/src/cache/entities/ThrottlingEntity.ts
T
2025-03-07 19:22:02 +01:00

15 lines
377 B
TypeScript

/*
* Copyright (c) Microsoft Corporation. All rights reserved.
* Licensed under the MIT License.
*/
export type ThrottlingEntity = {
// Unix-time value representing the expiration of the throttle
throttleTime: number;
// Information provided by the server
error?: string;
errorCodes?: Array<string>;
errorMessage?: string;
subError?: string;
};