UNPKG

ngx-t-reports

Version:

Angular module for creating dynamic reports and dashboards. Supports various data sources, custom templates, and real-time updates.

7 lines (6 loc) 291 B
import { Observable } from "rxjs"; export interface NgxTReportsConfig { runPipeLine: ((pipeline: any[], workflowId: string) => Observable<any>); postToServer: ((url: string, data: any, options?: any) => Observable<any>); dataIntegration: () => Observable<Record<string, any>>; }