Skip to content

Commit 3821e73

Browse files
committed
Add missing members accessors
1 parent bb35cdf commit 3821e73

File tree

3 files changed

+4
-4
lines changed

3 files changed

+4
-4
lines changed

src/lib/components/ng-http-loader.component.ts

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ export class NgHttpLoaderComponent implements OnDestroy, OnInit {
6363
.subscribe(h => this._isVisible$.next(h));
6464
}
6565

66-
ngOnInit(): void {
66+
public ngOnInit(): void {
6767
this.nullifySpinnerIfEntryComponentIsDefined();
6868
this.initFilters();
6969
}
7070

71-
ngOnDestroy(): void {
71+
public ngOnDestroy(): void {
7272
this.subscriptions.unsubscribe();
7373
}
7474

src/lib/ng-http-loader.module.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ import { SPINKIT_COMPONENTS } from './spinkits';
2727
],
2828
})
2929
export class NgHttpLoaderModule {
30-
static forRoot(): ModuleWithProviders {
30+
public static forRoot(): ModuleWithProviders {
3131
return {
3232
ngModule: NgHttpLoaderModule,
3333
providers: [

src/lib/services/pending-requests-interceptor.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ export class PendingRequestsInterceptor implements HttpInterceptor {
7979
|| this.shouldBypassHeader(req);
8080
}
8181

82-
intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
82+
public intercept(req: HttpRequest<any>, next: HttpHandler): Observable<HttpEvent<any>> {
8383
const shouldBypass = this.shouldBypass(req);
8484

8585
if (!shouldBypass) {

0 commit comments

Comments
 (0)