Interface RenderScheduleOptions

Options for render schedule.

This is passed to render scheduler when constructing new schedule.

A render configuration can be constructed based on the options with :object.by RenderScheduleConfig:object.by() function.

Hierarchy

Properties

Properties

error?: ((this, ...messages) => void)

Type declaration

    • (this, ...messages): void
    • Reports an error. E.g. a render shot execution failure.

      Reports errors with console.error() by default.

      Parameters

      • this: void
      • Rest ...messages: unknown[]

        Error messages to report.

      Returns void

node?: Node

A DOM node for constructed schedule.

Used to detect missing window option.

window?: Window

A window for constructed schedule.

Detected by nodeWindow by default, if node is specified. Falls back to current window.

The schedulers that don't need a window never access this option value.

Generated using TypeDoc