openreplay/frontend/app/services/index.ts
2022-04-04 15:22:51 +02:00

5 lines
No EOL
281 B
TypeScript

import DashboardService, { IDashboardService } from "./DashboardService";
import MetricService, { IMetricService } from "./MetricService";
export const dashboardService: IDashboardService = new DashboardService();
export const metricService: IMetricService = new MetricService();