| 4 | export var ContentDialog = <typeof WinJS.UI.PrivateContentDialog>WinJS.UI.ContentDialog; |
| 5 | |
| 6 | export interface IContentDialogOptions { |
| 7 | title: string; |
| 8 | primaryCommandText: string; |
| 9 | secondaryCommandText: string; |
| 10 | primaryCommandDisabled: boolean; |
| 11 | secondaryCommandDisabled: boolean; |
| 12 | } |
| 13 | |
| 14 | export interface IPrivateContentDialogOptions extends IContentDialogOptions { |
| 15 | innerHTML: string; |
nothing calls this directly
no outgoing calls
no test coverage detected