Merge pull request #18187 from dooks/patch-1

@types/angular-strap - Missing IModalOptions
This commit is contained in:
Wesley Wigham
2017-07-18 14:20:50 -07:00
committed by GitHub

View File

@@ -45,9 +45,14 @@ declare namespace mgcrea.ngStrap {
template?: string;
templateUrl?: string;
contentTemplate?: string;
prefixClass?: string;
prefixEvent?: string;
id?: string;
scope?: ng.IScope;
onBeforeHide?: (modal: IModal) => void;
onHide?: (modal: IModal) => void;
onBeforeShow?: (modal: IModal) => void;
onShow?: (modal: IModal) => void;
}
interface IModalScope extends ng.IScope {