MaybePromise
Describe a type that might be a Promise
import { MaybePromise } from 'crustack/types'
type T = MaybePromise<{ a: string }>// T = { a: string } | Promise<{ a: string }>
Describe a type that might be a Promise
import { MaybePromise } from 'crustack/types'
type T = MaybePromise<{ a: string }>// T = { a: string } | Promise<{ a: string }>