Function fireAndForget

  • Function which fires an async function without 'await'. This makes it clear that we do not wish to use 'await' for this particular async function.

    Parameters

    • asyncFunc: (() => Promise<void>)

      The async function to be called.

        • (): Promise<void>
        • Returns Promise<void>

    Returns void

Generated using TypeDoc