Format stuff

This commit is contained in:
Zoe Roux 2025-03-02 17:30:00 +01:00
parent 98c6263036
commit 019be569dd
No known key found for this signature in database
3 changed files with 971 additions and 1055 deletions

File diff suppressed because it is too large Load Diff

View File

@ -1,5 +1,6 @@
import { t } from "elysia";
import type { Prettify } from "~/utils";
import { SeedCollection } from "./collections";
import { bubble, registerExamples } from "./examples";
import { bubbleImages } from "./examples/bubble";
import {
@ -12,7 +13,6 @@ import {
TranslationRecord,
} from "./utils";
import { Video } from "./video";
import { SeedCollection } from "./collections";
export const MovieStatus = t.UnionEnum(["unknown", "finished", "planned"]);
export type MovieStatus = typeof MovieStatus.static;

View File

@ -1,4 +1,6 @@
import { t } from "elysia";
import type { Prettify } from "~/utils";
import { SeedCollection } from "./collections";
import { SeedEntry, SeedExtra } from "./entry";
import { bubbleImages, madeInAbyss, registerExamples } from "./examples";
import { SeedSeason } from "./season";
@ -7,8 +9,6 @@ import { Genre } from "./utils/genres";
import { Image, SeedImage } from "./utils/image";
import { Language, TranslationRecord } from "./utils/language";
import { Resource } from "./utils/resource";
import { Prettify } from "~/utils";
import { SeedCollection } from "./collections";
export const SerieStatus = t.UnionEnum([
"unknown",