import { User } from "../types"; /** * Interface for user data access * Implement this to integrate with your database */ export interface IUserRepository { /** * Get a user by ID */ getUser(userId: string): Promise; /** * Get multiple users by IDs */ getUsers(userIds: string[]): Promise; /** * Add or update a user */ saveUser(user: User): Promise; /** * Delete a user */ deleteUser(userId: string): Promise; } //# sourceMappingURL=IUserRepository.d.ts.map