GitHub

MaybeAsync

import { MaybeAsync } from '@daffodil/core'

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