Testing page generation

This commit is contained in:
ZXY101
2023-08-03 10:08:04 +02:00
parent 00f438a290
commit 07e007aaa7
26 changed files with 564 additions and 92 deletions

View File

@@ -1,4 +1,5 @@
import type { Manga } from "$lib/types/catalog";
import type { Manga, Volume } from "$lib/types/catalog";
import { writable } from "svelte/store";
export const currentManga = writable<Manga | undefined>(undefined);
export const currentVolume = writable<Volume | undefined>(undefined);