mirror of
https://github.com/C9Glax/tranga-website.git
synced 2025-10-15 09:50:48 +02:00
8 lines
378 B
TypeScript
8 lines
378 B
TypeScript
export const FetchKeys = {
|
|
FileLibraries: 'FileLibraries',
|
|
Chapters: { All: 'Chapters' },
|
|
Manga: { All: 'Manga', Id: (id: string) => `Manga/${id}` },
|
|
MangaConnector: { Id: (id: string) => `MangaConnector/${id}`, All: 'MangaConnector' },
|
|
Metadata: { Fetchers: 'Metadata', Links: 'Metadata/Links', Manga: (mangaId: string) => `Metadata/Links/${mangaId}` },
|
|
};
|