UNPKG

@azure/msal-common

Version:
15 lines (13 loc) 377 B
/* * 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; };