records$: Observable<any>;
ngOnInit() {
this.records$ = this.clientService.getAll(1, this.pagesize);
}
в представлении (если вы используете Angular 4+):
<table *ngIf="records$ | async as records">
<tr *ngFor="let record of records.data">