Expose custom dialog extension APIs (#1206)

This commit is contained in:
Matt Irvine
2018-04-24 16:43:14 -07:00
committed by GitHub
parent 3abbc8fd97
commit 1811dfa423
10 changed files with 432 additions and 35 deletions

View File

@@ -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;
}