Models.ts 224 B

123456789
  1. import { AbcModel } from "../schemas/abc";
  2. import { NewsModel } from "../schemas/news";
  3. import { StationModel } from "../schemas/station";
  4. export type Models = {
  5. abc: AbcModel;
  6. news: NewsModel;
  7. station: StationModel;
  8. };