mirror of
https://github.com/shlinkio/shlink-web-client.git
synced 2026-03-15 12:03:46 +00:00
Create src folder for shlink-web-component
This commit is contained in:
@@ -1,9 +1,9 @@
|
||||
import { fromPartial } from '@total-typescript/shoehorn';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
|
||||
import {
|
||||
createShortUrl as createShortUrlCreator,
|
||||
shortUrlCreationReducerCreator,
|
||||
} from '../../../shlink-web-component/short-urls/reducers/shortUrlCreation';
|
||||
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlCreation';
|
||||
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
|
||||
import type { ShlinkState } from '../../../src/container/types';
|
||||
|
||||
|
||||
@@ -2,7 +2,7 @@ import { fromPartial } from '@total-typescript/shoehorn';
|
||||
import {
|
||||
deleteShortUrl as deleteShortUrlCreator,
|
||||
shortUrlDeletionReducerCreator,
|
||||
} from '../../../shlink-web-component/short-urls/reducers/shortUrlDeletion';
|
||||
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlDeletion';
|
||||
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
|
||||
import type { ProblemDetailsError } from '../../../src/api/types/errors';
|
||||
|
||||
|
||||
@@ -1,7 +1,7 @@
|
||||
import { fromPartial } from '@total-typescript/shoehorn';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
|
||||
import { shortUrlDetailReducerCreator } from '../../../shlink-web-component/short-urls/reducers/shortUrlDetail';
|
||||
import type { ShortUrlsList } from '../../../shlink-web-component/short-urls/reducers/shortUrlsList';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
|
||||
import { shortUrlDetailReducerCreator } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlDetail';
|
||||
import type { ShortUrlsList } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlsList';
|
||||
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
|
||||
import type { ShlinkState } from '../../../src/container/types';
|
||||
|
||||
|
||||
@@ -1,9 +1,9 @@
|
||||
import { fromPartial } from '@total-typescript/shoehorn';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
|
||||
import {
|
||||
editShortUrl as editShortUrlCreator,
|
||||
shortUrlEditionReducerCreator,
|
||||
} from '../../../shlink-web-component/short-urls/reducers/shortUrlEdition';
|
||||
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlEdition';
|
||||
import type { ShlinkState } from '../../../src/container/types';
|
||||
import type { SelectedServer } from '../../../src/servers/data';
|
||||
|
||||
|
||||
@@ -1,14 +1,14 @@
|
||||
import { fromPartial } from '@total-typescript/shoehorn';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/short-urls/data';
|
||||
import { createShortUrl as createShortUrlCreator } from '../../../shlink-web-component/short-urls/reducers/shortUrlCreation';
|
||||
import { shortUrlDeleted } from '../../../shlink-web-component/short-urls/reducers/shortUrlDeletion';
|
||||
import { editShortUrl as editShortUrlCreator } from '../../../shlink-web-component/short-urls/reducers/shortUrlEdition';
|
||||
import type { ShortUrl } from '../../../shlink-web-component/src/short-urls/data';
|
||||
import { createShortUrl as createShortUrlCreator } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlCreation';
|
||||
import { shortUrlDeleted } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlDeletion';
|
||||
import { editShortUrl as editShortUrlCreator } from '../../../shlink-web-component/src/short-urls/reducers/shortUrlEdition';
|
||||
import {
|
||||
listShortUrls as listShortUrlsCreator,
|
||||
shortUrlsListReducerCreator,
|
||||
} from '../../../shlink-web-component/short-urls/reducers/shortUrlsList';
|
||||
import { createNewVisits } from '../../../shlink-web-component/visits/reducers/visitCreation';
|
||||
import type { CreateVisit } from '../../../shlink-web-component/visits/types';
|
||||
} from '../../../shlink-web-component/src/short-urls/reducers/shortUrlsList';
|
||||
import { createNewVisits } from '../../../shlink-web-component/src/visits/reducers/visitCreation';
|
||||
import type { CreateVisit } from '../../../shlink-web-component/src/visits/types';
|
||||
import type { ShlinkApiClient } from '../../../src/api/services/ShlinkApiClient';
|
||||
import type { ShlinkShortUrlsResponse } from '../../../src/api/types';
|
||||
|
||||
|
||||
Reference in New Issue
Block a user