UNPKG

hivest-js

Version:

A simple, fast and minimalist framework for Node.js that allows you to create modular applications with dependency injection using decorators

6 lines 213 B
export interface UserRepo { create(user: any): Promise<any>; findById(userId: string): Promise<any>; update(userId: string, user: any): Promise<any>; } //# sourceMappingURL=user.repo.interface.d.ts.map