import type { InferSelectModel } from "drizzle-orm"; import { users } from "~db/cred/schema"; import { bilibiliMetadata, latestVideoSnapshot, videoSnapshot } from "~db/main/schema"; export type UserType = InferSelectModel; export type SensitiveUserFields = "password" | "unqId"; export type BilibiliMetadataType = InferSelectModel; export type VideoSnapshotType = InferSelectModel; export type LatestVideoSnapshotType = InferSelectModel;