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

18 lines 499 B
import { UserService } from './user.service'; export declare class SettingsController { readonly userService: UserService; constructor(userService: UserService); getSettings({ req, res }: { req: any; res: any; }): Promise<any>; updateTheme({ req, res }: { req: any; res: any; }): Promise<any>; updateNotifications({ req, res }: { req: any; res: any; }): Promise<any>; } //# sourceMappingURL=settings.controller.d.ts.map