Skip to content
This repository was archived by the owner on Dec 26, 2017. It is now read-only.

Commit 228eab1

Browse files
j2L4eMikeRyanDev
authored andcommitted
fix(Type): Use Type<any> instead of Type
1 parent 2ef1c40 commit 228eab1

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

src/module.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ import { runAfterBootstrapEffects, afterBootstrapEffects } from './bootstrap-lis
1717
]
1818
})
1919
export class EffectsModule {
20-
static run(type: Type) {
20+
static run(type: Type<any>) {
2121
return {
2222
ngModule: EffectsModule,
2323
providers: [
@@ -28,7 +28,7 @@ export class EffectsModule {
2828
};
2929
}
3030

31-
static runAfterBootstrap(type: Type) {
31+
static runAfterBootstrap(type: Type<any>) {
3232
return {
3333
ngModule: EffectsModule,
3434
providers: [

0 commit comments

Comments
 (0)