import { Result, UniqueID } from "@common/domain"; import { User } from "../aggregates"; export interface IUserService { findUsers(transaction?: any): Promise>; findUserById(userId: UniqueID, transaction?: any): Promise>; }