import { User } from "../types"; import { IUserRepository } from "./IUserRepository"; /** * In-memory implementation of IUserRepository * Use this for testing or as a reference implementation * For production, implement with your actual database */ export declare class InMemoryUserRepository implements IUserRepository { private users; getUser(userId: string): Promise; getUsers(userIds: string[]): Promise; saveUser(user: User): Promise; deleteUser(userId: string): Promise; /** * Clear all users (for testing) */ clear(): void; } //# sourceMappingURL=InMemoryUserRepository.d.ts.map