import { Model, Schema } from "mongoose"; import { AbcSchema } from "../schemas/abc"; import { NewsQueryHelpers, NewsSchema } from "../schemas/news"; import { StationSchema } from "../schemas/station"; export type Schemas = { abc: Schema; news: Schema< NewsSchema, Model, {}, NewsQueryHelpers >; station: Schema; }; export type Models = { abc: Model; news: Model; station: Model; };