mirror of
https://github.com/microsoft/vscode.git
synced 2026-04-11 03:35:04 -05:00
17 lines
620 B
TypeScript
17 lines
620 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the MIT License. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { SimulationStorageValue } from './simulationStorage';
|
|
|
|
export const enum TestSource {
|
|
Local = 1,
|
|
/** AML (Azure ML) runs */
|
|
External = 2,
|
|
/** NES external scenarios */
|
|
NesExternal = 3,
|
|
}
|
|
|
|
export type TestSourceValue = SimulationStorageValue<TestSource>;
|