import type { InferSelectModel } from "drizzle-orm"; import { usersInCredentials, bilibiliMetadata, latestVideoSnapshot, songs, videoSnapshot, producer } from "./main/schema"; export type UserType = InferSelectModel; export type SensitiveUserFields = "password" | "unqId"; export type BilibiliMetadataType = InferSelectModel; export type VideoSnapshotType = InferSelectModel; export type LatestVideoSnapshotType = InferSelectModel; export type SongType = InferSelectModel; export type ProducerType = InferSelectModel;