本文整理汇总了TypeScript中angular.Module类的典型用法代码示例。如果您正苦于以下问题:TypeScript Module类的具体用法?TypeScript Module怎么用?TypeScript Module使用的例子?那么恭喜您, 这里精选的类代码示例或许可以为您提供帮助。
在下文中一共展示了Module类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的TypeScript代码示例。
示例1: it
it('.service should have right return type', (done) => {
// NOTICE: Manual testing in VSCode with mouse hover
module.config(($provide: Provide) => {
// Should have type of Provider<any>
const provider0 = $provide.service('customService0', MyServiceFn)
// Should have type of Provider<MyServiceClass>
const provider1 = $provide.service('customService1', MyServiceClass)
// Should have type of Provider<any>
const provider2 = $provide.service('customService2', ['$controller', MyServiceFn])
// Should have type of Provider<MyServiceClass>
const provider3 = $provide.service('customService3', ['$controller', MyServiceClass])
}).run((customService0, customService1, customService2, customService3) => {
expect(customService0 instanceof MyServiceFn).toBeTruthy()
expect(customService1 instanceof MyServiceClass).toBeTruthy()
expect(customService2 instanceof MyServiceFn).toBeTruthy()
expect(customService3 instanceof MyServiceClass).toBeTruthy()
done()
})
angular.bootstrap(element, ['custom'])
})