mirror of
https://github.com/JasonYANG170/IOTConnect-Web.git
synced 2024-11-24 04:36:31 +00:00
12 lines
277 B
TypeScript
12 lines
277 B
TypeScript
import { TTimerType } from '../types';
|
|
export interface ISetNotification {
|
|
id: null;
|
|
method: 'set';
|
|
params: {
|
|
delay: number;
|
|
now: number;
|
|
timerId: number;
|
|
timerType: TTimerType;
|
|
};
|
|
}
|
|
//# sourceMappingURL=set-notification.d.ts.map
|