import type { IUserRepository } from "../repository.js"; import type { User, UserId } from "../types.js"; export default class UserRepository implements IUserRepository { private readonly mapByUserId; private readonly mapByEmail; findById(id: UserId): Promise; findByEmail(email: string): Promise; save(user: User): Promise; } //# sourceMappingURL=user-repository.d.ts.map