15 lines
377 B
TypeScript
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;
|
|
};
|