interface WithResolvers
thefrontside/effectioninterface WithResolvers<T>
The return type of https://effection-www-s5a0jkwj0z5x.deno.dev/api/v4/withResolvers. It contains an operation bundled with synchronous functions that determine its outcome.
Type Parameters
T
Properties
- operation: https://effection-www-s5a0jkwj0z5x.deno.dev/api/v4/Operation<T>
 No documentation available.
Methods
- resolve(value: T): void
 Cause operation to produce
value. If eitherresolveorrejecthas been called before, this will have no effect.- reject(error: Error): void
 Cause operation to raise
Error. Any calling operation waiting onoperationwill. Yielding tooperationsubsequently will also raise the same error. * If eitherresolveorrejecthas been called before, this will have no effect.