UNPKG

dt-common-device

Version:

A secure and robust device management library for IoT applications

10 lines (9 loc) 389 B
import { ISchedule } from "../interfaces/ISchedule"; export declare class LocalScheduleService { private readonly scheduleRepository; constructor(); getSchedule(scheduleId: string): Promise<any>; setSchedule(scheduleId: string, schedule: ISchedule): Promise<any>; getScheduleByZone(zoneId: string): Promise<any>; deleteSchedule(scheduleId: string): Promise<any>; }