18 lines
431 B
TypeScript
18 lines
431 B
TypeScript
|
/**
|
||
|
* Error codes for ErrorDetail.Code and `x-ms-error-code` header.
|
||
|
*/
|
||
|
export declare enum ErrorCodes {
|
||
|
/**
|
||
|
* Operation timed out.
|
||
|
*/
|
||
|
Timeout = "Timeout",
|
||
|
/**
|
||
|
* Operation cannot be performed because the service is not available.
|
||
|
*/
|
||
|
ServiceUnavailable = "ServiceUnavailable",
|
||
|
/**
|
||
|
* Internal error.
|
||
|
*/
|
||
|
InternalError = "InternalError"
|
||
|
}
|
||
|
//# sourceMappingURL=errorCodes.d.ts.map
|