mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
Enable basic wizard API (#1450)
This commit is contained in:
@@ -121,6 +121,25 @@ export interface IModelViewButtonDetails {
|
||||
hidden: boolean;
|
||||
}
|
||||
|
||||
export interface IModelViewWizardPageDetails {
|
||||
title: string;
|
||||
content: string;
|
||||
enabled: boolean;
|
||||
customButtons: number[];
|
||||
}
|
||||
|
||||
export interface IModelViewWizardDetails {
|
||||
title: string;
|
||||
pages: number[];
|
||||
currentPage: number;
|
||||
doneButton: number;
|
||||
cancelButton: number;
|
||||
generateScriptButton: number;
|
||||
nextButton: number;
|
||||
backButton: number;
|
||||
customButtons: number[];
|
||||
}
|
||||
|
||||
/// Card-related APIs that need to be here to avoid early load issues
|
||||
// with enums causing requiring of sqlops API to fail.
|
||||
export enum StatusIndicator {
|
||||
|
||||
Reference in New Issue
Block a user