roomDeviceController.d.ts 1.1 KB

1234567891011
  1. import { Request, Response } from 'express';
  2. export declare const getAllDevices: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  3. export declare const getDeviceById: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  4. export declare const getDevicesByRoom: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  5. export declare const getDevicesByType: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  6. export declare const createDevice: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  7. export declare const updateDevice: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  8. export declare const updateDeviceStatus: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  9. export declare const deleteDevice: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  10. export declare const getDeviceStats: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
  11. //# sourceMappingURL=roomDeviceController.d.ts.map