mirror of
https://github.com/ckaczor/azuredatastudio.git
synced 2026-01-18 17:22:45 -05:00
Expose custom dialog extension APIs (#1206)
This commit is contained in:
@@ -94,3 +94,21 @@ export interface IComponentEventArgs {
|
||||
eventType: ComponentEventType;
|
||||
args: any;
|
||||
}
|
||||
|
||||
export interface IModelViewDialogDetails {
|
||||
title: string;
|
||||
content: string | number[];
|
||||
okButton: number;
|
||||
cancelButton: number;
|
||||
customButtons: number[];
|
||||
}
|
||||
|
||||
export interface IModelViewTabDetails {
|
||||
title: string;
|
||||
content: string;
|
||||
}
|
||||
|
||||
export interface IModelViewButtonDetails {
|
||||
label: string;
|
||||
enabled: boolean;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user