Fix imports

This commit is contained in:
Alejandro Celaya
2023-08-06 13:15:12 +02:00
parent 007d79dd03
commit 9f9f3b6402
3 changed files with 15 additions and 5 deletions

View File

@@ -1,4 +1,4 @@
import type { ShlinkTagsStats } from '../../../api/types';
import type { ShlinkTagsStats } from '@shlinkio/shlink-web-component/api-contract';
export type TagStats = Omit<ShlinkTagsStats, 'tag'>;

View File

@@ -1,5 +1,5 @@
import type { ShlinkVisitsParams } from '@shlinkio/shlink-web-component/api-contract';
import { countBy, groupBy, pipe, prop } from 'ramda';
import type { ShlinkVisitsParams } from '../../../api/types';
import { formatIsoDate } from '../../utils/dates/helpers/date';
import type { CreateVisit, NormalizedOrphanVisit, NormalizedVisit, OrphanVisit, Stats, Visit, VisitsParams } from './index';