mirror of
https://github.com/gosticks/DefinitelyTyped.git
synced 2025-10-16 12:05:41 +00:00
22 lines
606 B
TypeScript
22 lines
606 B
TypeScript
// Type definitions for angular-deferred-bootstrap v0.1.9
|
|
// Project: https://github.com/philippd/angular-deferred-bootstrap
|
|
// Definitions by: Markus Wagner <https://github.com/Ritzlgrmft>
|
|
// Definitions: https://github.com/DefinitelyTyped/DefinitelyTyped
|
|
// TypeScript Version: 2.3
|
|
|
|
/// <reference types="angular" />
|
|
|
|
declare var deferredBootstrapper: angular.IDeferredBootstrapperStatic;
|
|
|
|
declare module angular {
|
|
interface IDeferredBootstrapperStatic {
|
|
bootstrap(configParam: IConfigParam): ng.IPromise<boolean>
|
|
}
|
|
|
|
interface IConfigParam {
|
|
element?: Node,
|
|
module?: string,
|
|
resolve: any
|
|
}
|
|
}
|