Type Alias ArrayOptions

ArrayOptions: {
    debugLifecycle: boolean;
    interval: Interval;
    lazy: Lazy;
    signal: AbortSignal;
    whenStopped: "continue" | "reset";
}

Type declaration

  • debugLifecycle: boolean
  • interval: Interval

    Interval between each item being read. Default: 5ms.

  • lazy: Lazy
  • signal: AbortSignal
  • whenStopped: "continue" | "reset"

    Behaviour when reactive stops, for example due to having no subscribers

    • continue: iteration continues through array where it left off
    • reset: iteration begins from start of array