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

9 lines 348 B
import { UserRepo } from './user.repo.interface'; export declare class UserService { readonly userRepo: UserRepo; constructor(userRepo: UserRepo); createUser(userData: any): Promise<any>; getUser(userId: string): Promise<any>; updateUser(userId: string, userData: any): Promise<any>; } //# sourceMappingURL=user.service.d.ts.map