mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-02-16 10:58:30 -05:00
Add ability to pass in initial variable values to deployment wizards (#14224)
This commit is contained in:
@@ -4,6 +4,7 @@
|
||||
*--------------------------------------------------------------------------------------------*/
|
||||
|
||||
import * as azdata from 'azdata';
|
||||
import { InitialVariableValues } from '../interfaces';
|
||||
import { Validator } from './modelViewUtils';
|
||||
import { WizardPageInfo } from './wizardPageInfo';
|
||||
|
||||
@@ -29,7 +30,7 @@ export abstract class WizardPageBase<T> {
|
||||
|
||||
public async onLeave(_pageInfo?: WizardPageInfo): Promise<void> { }
|
||||
|
||||
public abstract initialize(): void;
|
||||
public abstract initialize(initialVariableValues?: InitialVariableValues): void;
|
||||
|
||||
protected get validators(): Validator[] {
|
||||
return this._validators;
|
||||
|
||||
Reference in New Issue
Block a user