Move category files into new folder

This commit is contained in:
schroda
2024-10-05 21:39:58 +02:00
parent 17e42ae012
commit 946c852828
22 changed files with 133 additions and 114 deletions

View File

@@ -13,11 +13,10 @@ import { AppTheme } from '@/lib/ui/AppThemes.ts';
import { MetadataMigrationSettings } from '@/modules/migration/Migration.types.ts';
import { TranslationKey } from '@/Base.types.ts';
import { MangaMetadataKeys } from '@/modules/manga/MangaCard.types.tsx';
import { LibraryOptions, MetadataLibrarySettings } from '@/modules/library/Library.types.ts';
import { MetadataLibrarySettings } from '@/modules/library/Library.types.ts';
import { SourceMetadataKeys } from '@/modules/source/Source.types.ts';
import { MetadataTrackingSettings } from '@/modules/tracker/Tracker.types.ts';
export interface ICategoryMetadata extends LibraryOptions {}
import { CategoryMetadataKeys } from '@/modules/category/Category.types.ts';
export interface IMetadataMigration {
appKeyPrefix?: { oldPrefix: string; newPrefix: string };
@@ -49,8 +48,6 @@ export type MetadataServerSettingKeys = keyof MetadataServerSettings;
export type SearchMetadataKeys = keyof ISearchSettings;
export type CategoryMetadataKeys = keyof ICategoryMetadata;
export type AppMetadataKeys =
| MetadataServerSettingKeys
| MangaMetadataKeys