UNPKG

687 BTypeScriptView Raw
1/**
2 * -------------------------------------------------------------------------------------------
3 * Copyright (c) Microsoft Corporation. All Rights Reserved. Licensed under the MIT License.
4 * See License in the project root for license information.
5 * -------------------------------------------------------------------------------------------
6 */
7/**
8 * @module ChaosHandlerData
9 */
10/**
11 * Contains RequestMethod to corresponding array of possible status codes, used for Random mode
12 */
13export declare const methodStatusCode: {
14 [key: string]: number[];
15};
16/**
17 * Contains statusCode to statusMessage map
18 */
19export declare const httpStatusCode: {
20 [key: number]: string;
21};