mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-20 17:22:51 -05:00
* SQL VM wizard migration to ResourceType Wizard * Revert "SQL VM wizard migration to ResourceType Wizard" This reverts commit e58cd47707a7e2812be20d915f1fe638b96b035f. * migrated notebook wizard * SQL VM wizard migration to ResourceType Wizard * Fixed some imports on SQL VM wizard * migrated sqldb wizard to generic ResourceTypeWizard * Added missing import Solving errors from the merge * Moved some common functionality into ResourceTypeWizard * Changed logic of start deployment * fixed some import after changing files.
26 lines
771 B
TypeScript
26 lines
771 B
TypeScript
/*---------------------------------------------------------------------------------------------
|
|
* Copyright (c) Microsoft Corporation. All rights reserved.
|
|
* Licensed under the Source EULA. See License.txt in the project root for license information.
|
|
*--------------------------------------------------------------------------------------------*/
|
|
|
|
import { ResourceTypePage } from '../../resourceTypePage';
|
|
|
|
export abstract class BasePage extends ResourceTypePage {
|
|
|
|
protected liveValidation!: boolean;
|
|
|
|
public initialize(): void {
|
|
throw new Error('Method not implemented.');
|
|
}
|
|
|
|
protected async validatePage(): Promise<string> {
|
|
return '';
|
|
}
|
|
|
|
protected activateRealTimeFormValidation(): void {
|
|
if (this.liveValidation) {
|
|
this.validatePage();
|
|
}
|
|
}
|
|
}
|