Type Alias RepeatingEventData

RepeatingEventData: {
    firstWait?: number | string;
    module: "event-repeat";
    wait: number | string;
}

Represents the data structure for a repeating event.

Type declaration

  • OptionalfirstWait?: number | string
    • The time to wait before the first execution, expressed similarly to wait.
  • module: "event-repeat"
    • The module type, identifying this as a repeating event module.
  • wait: number | string
    • The time to wait between each execution, expressed as a number (milliseconds) or a string (e.g., '5m' for 5 minutes).