MCPcopy Create free account
hub / github.com/ForestHubAI/edge-agents / AlarmNode

Interface AlarmNode

ts/workflow-core/src/node/TriggerNode.ts:34–40  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

32
33// Alarm Trigger - fires at a scheduled time on selected days
34export 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
43export interface OnStartupNode extends NodeBase {

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected