ulthar-framework/apps/syntropy/domain/models/index.ts

5 lines
148 B
TypeScript

import type { ProjectModel } from "./project.ts";
import type { UserModel } from "./user.ts";
export type DomainModels = UserModel | ProjectModel;