Skip to content

Commit b31eca5

Browse files
committed
Fix "Member 'entryComponent' implicitly has an 'any' type."
1 parent 3255904 commit b31eca5

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/components/spinner/spinner.component.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,7 @@ export class SpinnerComponent implements OnDestroy, OnInit {
3434
@Input()
3535
public debounceDelay = 0;
3636
@Input()
37-
public entryComponent = null;
37+
public entryComponent: any = null;
3838

3939
constructor(private pendingRequestInterceptorService: PendingInterceptorService) {
4040
this.subscription = this.pendingRequestInterceptorService

0 commit comments

Comments
 (0)