generated from nhcarrigan/template
feat: add retired category
This commit is contained in:
@@ -10,6 +10,7 @@ enum BookStatus {
|
||||
reading = "READING",
|
||||
finished = "FINISHED",
|
||||
toRead = "TO_READ",
|
||||
retired = "RETIRED",
|
||||
}
|
||||
|
||||
interface Book {
|
||||
|
||||
@@ -10,6 +10,7 @@ enum GameStatus {
|
||||
playing = "PLAYING",
|
||||
completed = "COMPLETED",
|
||||
backlog = "BACKLOG",
|
||||
retired = "RETIRED",
|
||||
}
|
||||
|
||||
interface Game {
|
||||
|
||||
@@ -10,6 +10,7 @@ enum MangaStatus {
|
||||
reading = "READING",
|
||||
completed = "COMPLETED",
|
||||
wantToRead = "WANT_TO_READ",
|
||||
retired = "RETIRED",
|
||||
}
|
||||
|
||||
interface Manga {
|
||||
|
||||
@@ -16,6 +16,7 @@ enum MusicStatus {
|
||||
listening = "LISTENING",
|
||||
completed = "COMPLETED",
|
||||
wantToListen = "WANT_TO_LISTEN",
|
||||
retired = "RETIRED",
|
||||
}
|
||||
|
||||
interface Music {
|
||||
|
||||
@@ -17,6 +17,7 @@ enum ShowStatus {
|
||||
watching = "WATCHING",
|
||||
completed = "COMPLETED",
|
||||
wantToWatch = "WANT_TO_WATCH",
|
||||
retired = "RETIRED",
|
||||
}
|
||||
|
||||
interface Show {
|
||||
|
||||
Reference in New Issue
Block a user