Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
microsoft
GitHub Repository: microsoft/vscode
Path: blob/main/extensions/copilot/test/simulation/workbench/stores/testSource.ts
13399 views
1
/*---------------------------------------------------------------------------------------------
2
* Copyright (c) Microsoft Corporation. All rights reserved.
3
* Licensed under the MIT License. See License.txt in the project root for license information.
4
*--------------------------------------------------------------------------------------------*/
5
6
import { SimulationStorageValue } from './simulationStorage';
7
8
export const enum TestSource {
9
Local = 1,
10
/** AML (Azure ML) runs */
11
External = 2,
12
/** NES external scenarios */
13
NesExternal = 3,
14
}
15
16
export type TestSourceValue = SimulationStorageValue<TestSource>;
17
18