remoteConfig.ts 376 Bytes
Newer Older
1
2
3
4
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

import { EnvironmentInformation } from '../environment';
5
import { RemoteMachineConfig } from 'common/experimentConfig';
6
7
8
9
10

/**
 * RemoteMachineEnvironmentInformation
 */
export class RemoteMachineEnvironmentInformation extends EnvironmentInformation {
11
    public rmMachineMeta?: RemoteMachineConfig;
12
}