11 wrappers generated from
Promise and Promise.prototype.
Every entry takes a single object literal whose keys mirror the original
parameter names, plus an optional prompt: string for the LLM path.
Method First signature allall (input: { values: Iterable < T | PromiseLike < T >> ; prompt ?: string }): Promise < Promise < Awaited < T > [] >>
allSettledallSettled (input: { values: T ; prompt ?: string }): Promise < Promise < { - readonly [ P in keyof T ]: PromiseSettledResult < Awaited < T [ P ] >> ; } >>
anyany (input: { values: T ; prompt ?: string }): Promise < Promise < Awaited < T [number] >>>
catchcatch ( input : { promise : < receiver >; onrejected ?: ( reason : any ) => TResult | PromiseLike < TResult >; prompt ?: string }) : Promise < Promise < T | TResult >>
finallyfinally ( input : { promise : < receiver >; onfinally ?: () => void ; prompt ?: string }) : Promise < Promise < T >>
racerace (input: { values: Iterable < T | PromiseLike < T >> ; prompt ?: string }): Promise < Promise < Awaited < T >>>
rejectreject (input: { reason?: any; prompt ?: string }): Promise < Promise < T >>
resolveresolve (input: { prompt?: string }): Promise < Promise <void>>
thenthen (input: { promise: < receiver >; onfulfilled ?: ( value : T ) => TResult1 | PromiseLike < TResult1 > ; onrejected ?: ( reason : any ) => TResult2 | PromiseLike < TResult2 > ; prompt ?: string }): Promise < Promise < TResult1 | TResult2 >>
trytry ( input : { callbackFn ?: ( ... args : U ) => T | PromiseLike < T >; args : U ; prompt ?: string }) : Promise < Promise < Awaited < T >>>
withResolverswithResolvers (input: { prompt?: string }): Promise < PromiseWithResolvers < T >>