Type Alias MaybePromise<T>

MaybePromise<T>: T | Promise<T>

Describes the value that could be either be a promise or a plain value.

Type Parameters

  • T

    The type of value.