rewrote the Anime.svelte to move out helper functions and clean up code

This commit is contained in:
2024-09-05 15:29:42 -04:00
parent aeec8f79b2
commit 77e361b5b2
20 changed files with 616 additions and 473 deletions

View File

@ -0,0 +1,8 @@
export type StatusOptions = StatusOption[]
export type StatusOption = {
id: number,
aniList: string,
mal: string,
simkl: string,
}

View File

@ -0,0 +1,13 @@
export type TableItems = TableItem[]
export type TableItem = {
id: number
service: string
progress: number
status: string
startedAt: string
completedAt: string
score: number
repeat: number
notes: string
}