mirror of
https://github.com/microsoft/vscode.git
synced 2026-05-25 01:41:41 +01:00
333d9a4053
Co-authored-by: copilot-swe-agent[bot] <198982749+Copilot@users.noreply.github.com>
14 lines
542 B
TypeScript
14 lines
542 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,
|
|
External = 2
|
|
}
|
|
|
|
export type TestSourceValue = SimulationStorageValue<TestSource>;
|