get_childDialog is a function

get_childDialog is a function returns SP.UI.ModalDialog
This commit is contained in:
Might-E
2016-02-05 10:44:46 +01:00
parent 4ec3c5bf29
commit 3753596225

View File

@@ -7329,7 +7329,7 @@ declare module SP {
/** Displays a wait/loading modal dialog with the specified title, message, height and width. Height and width are defined in pixels. Cancel button is shown. If user clicks it, the callbackFunc is called. */
static showWaitScreenSize(title: string, message?: string, callbackFunc?: SP.UI.DialogReturnValueCallback, height?: number, width?: number): SP.UI.ModalDialog;
static showPlatformFirstRunDialog(url: string, callbackFunc: SP.UI.DialogReturnValueCallback): SP.UI.ModalDialog;
static get_childDialog: ModalDialog;
static get_childDialog(): SP.UI.ModalDialog;
/** Closes the dialog using the specified dialog result. */
close(dialogResult: SP.UI.DialogResult): void;
}