5 lines
148 B
TypeScript
5 lines
148 B
TypeScript
import type { ProjectModel } from "./project.ts";
|
|
import type { UserModel } from "./user.ts";
|
|
|
|
export type DomainModels = UserModel | ProjectModel;
|