mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-15 10:58:31 -05:00
ML - dashboard icons and links (#10153)
* ML - dashboard icons and links
This commit is contained in:
27
extensions/machine-learning/src/prediction/interfaces.ts
Normal file
27
extensions/machine-learning/src/prediction/interfaces.ts
Normal file
@@ -0,0 +1,27 @@
|
||||
/*---------------------------------------------------------------------------------------------
|
||||
* Copyright (c) Microsoft Corporation. All rights reserved.
|
||||
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
export interface TableColumn {
|
||||
columnName: string;
|
||||
dataType?: string;
|
||||
}
|
||||
|
||||
export interface PredictColumn extends TableColumn {
|
||||
paramName?: string;
|
||||
}
|
||||
|
||||
export interface DatabaseTable {
|
||||
databaseName: string | undefined;
|
||||
tableName: string | undefined;
|
||||
schema: string | undefined
|
||||
}
|
||||
|
||||
export interface PredictInputParameters extends DatabaseTable {
|
||||
inputColumns: PredictColumn[] | undefined
|
||||
}
|
||||
|
||||
export interface PredictParameters extends PredictInputParameters {
|
||||
outputColumns: PredictColumn[] | undefined
|
||||
}
|
||||
Reference in New Issue
Block a user