Handle database

This commit is contained in:
ZXY101
2023-08-09 10:27:58 +02:00
parent 4e645467bb
commit 416b832f63
17 changed files with 14576 additions and 258 deletions

View File

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