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