| 1234567891011 |
- import { Request, Response } from 'express';
- export declare const getAllDevices: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const getDeviceById: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const getDevicesByRoom: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const getDevicesByType: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const createDevice: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const updateDevice: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const updateDeviceStatus: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const deleteDevice: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- export declare const getDeviceStats: (req: Request, res: Response) => Promise<Response<any, Record<string, any>>>;
- //# sourceMappingURL=roomDeviceController.d.ts.map
|