SheetXL - v0.3.20
    Preparing search index...

    Variable nextTickConst

    nextTick: (callback: Function) => void

    Executes a callback function on the next tick of the event loop or animation frame. This function provides a consistent way to defer execution across different environments.

    In browser environments, it uses requestAnimationFrame for smooth visual updates. In Node.js or non-browser contexts, it uses setImmediate (if available) or setTimeout.

    Type declaration

      • (callback: Function): void
      • Parameters

        • callback: Function

          The function to execute on the next tick

        Returns void