Skip to content

Commit

Permalink
fix: remove usage of uknown
Browse files Browse the repository at this point in the history
  • Loading branch information
ike18t committed Mar 28, 2020
1 parent f0fa0e5 commit 26dfdb8
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/common/jit-reflector.ts
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ export class JitReflector implements CompileReflector {
return this._reflectionCapabilities.annotations(typeOrFunc);
}

componentModuleUrl = (type: unknown) => `./${stringify(type)}`;
componentModuleUrl = (type: any) => `./${stringify(type)}`;

// This does not exist in Angular 5.1.x but is required to exist in 5.2+
guards = (): { [key: string]: any } => ({});
Expand Down

0 comments on commit 26dfdb8

Please sign in to comment.