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