Create src folder for shlink-web-component

This commit is contained in:
Alejandro Celaya
2023-08-02 08:23:48 +02:00
parent b7d57a53f2
commit c48facc863
294 changed files with 347 additions and 347 deletions

View File

@@ -16,10 +16,10 @@ import type {
ShlinkTagsStatsResponse,
ShlinkVisits,
ShlinkVisitsOverview,
ShlinkVisitsParams } from '../../../shlink-web-component/api-contract';
import { isRegularNotFound, parseApiError } from '../../../shlink-web-component/api-contract/utils';
import type { ShortUrl, ShortUrlData } from '../../../shlink-web-component/short-urls/data';
import { stringifyQuery } from '../../../shlink-web-component/utils/helpers/query';
ShlinkVisitsParams } from '../../../shlink-web-component/src/api-contract';
import { isRegularNotFound, parseApiError } from '../../../shlink-web-component/src/api-contract/utils';
import type { ShortUrl, ShortUrlData } from '../../../shlink-web-component/src/short-urls/data';
import { stringifyQuery } from '../../../shlink-web-component/src/utils/helpers/query';
import type { HttpClient } from '../../common/services/HttpClient';
import { replaceAuthorityFromUri } from '../../utils/helpers/uri';
import type { OptionalString } from '../../utils/utils';