dltsClusterConfig.ts 231 Bytes
Newer Older
George Cheng's avatar
George Cheng committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// Copyright (c) Microsoft Corporation.
// Licensed under the MIT license.

export interface DLTSClusterConfig {
  dashboard: string;

  cluster: string;
  team: string;

  email: string;
  password: string;

  gpuType?: string;
}