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 ChaosStrategy
|
9 | */
|
10 | /**
|
11 | * Strategy used for Testing Handler
|
12 | * @enum
|
13 | */
|
14 | export declare enum ChaosStrategy {
|
15 | MANUAL = 0,
|
16 | RANDOM = 1
|
17 | }
|