UNPKG

ng-pure-datatable

Version:

This is a Angular datatable for tables which is not dependent on jquery. This is fully written with typescript and it uses observables to communicate events across the user defined table. This is inspired by previous libraries I wrote for `Larang-Paginato

12 lines (11 loc) 347 B
import { HttpClient } from '@angular/common/http'; import { Observable } from 'rxjs/Observable'; export declare class NgPaginateService { private http; constructor(http: HttpClient); /** * This is used to list all by paginator * @returns {Observable<any>} */ listByPaginator(url: any): Observable<any>; }