Function resolveAfter

  • Resolves a promise after a specified delay.

    This function returns a promise that resolves after the given number of milliseconds (ms), optionally resolving with a provided value.

    Returns

    A promise that resolves with the specified value after the delay.

    Type Parameters

    • T

    Parameters

    • ms: number

      The number of milliseconds to wait before resolving the promise.

    • Optional value: T

      The value to resolve with once the delay has passed. Default is undefined.

    Returns Promise<T | undefined>

Generated using TypeDoc