Collections.ts 178 B

12345678910
  1. import { Collection } from "mongodb";
  2. import Schema from "../Schema";
  3. export type Collections = Record<
  4. "abc" | "station",
  5. {
  6. schema: Schema;
  7. collection: Collection;
  8. }
  9. >;