/** * @tsplus static effect/core/stm/TDeferred.Aspects succeed * @tsplus pipeable effect/core/stm/TDeferred succeed */ export function succeed(value: A) { return (self: TDeferred): STM => self.done(Either.right(value)) }