| 32 | |
| 33 | // Alarm Trigger - fires at a scheduled time on selected days |
| 34 | export interface AlarmNode extends NodeBase { |
| 35 | type: "Alarm"; |
| 36 | arguments: { |
| 37 | time: string; |
| 38 | days: string[]; |
| 39 | }; |
| 40 | } |
| 41 | |
| 42 | // On Startup Trigger - fires once when device powers on |
| 43 | export interface OnStartupNode extends NodeBase { |
nothing calls this directly
no outgoing calls
no test coverage detected