Machine Learning Services Extension - Predict wizard (#9450)

*MLS extension - Added predict wizard
This commit is contained in:
Leila Lali
2020-03-09 15:40:05 -07:00
committed by GitHub
parent b017634431
commit 3be3563b0d
37 changed files with 1501 additions and 219 deletions

View File

@@ -16,6 +16,7 @@ export interface IPageView {
component: azdata.Component | undefined;
onEnter?: () => Promise<void>;
onLeave?: () => Promise<void>;
validate?: () => Promise<boolean>;
refresh: () => Promise<void>;
viewPanel: azdata.window.ModelViewPanel | undefined;
title: string;
@@ -32,3 +33,4 @@ export interface AzureModelResource extends AzureWorkspaceResource {
model?: WorkspaceModel;
}