import { MaybeAsync } from '@daffodil/core'
type MaybeAsync<T> = Promise<T> | Observable<T> | T
Promise | Observable | T