GitHub

MaybeAsync

type-alias

import { MaybeAsync } from '@daffodil/core'

type MaybeAsync<T> = Promise<T> | Observable<T> | T