/** * Makes a new `Deferred` to be completed by the fiber with the specified id. * * @tsplus static effect/core/io/Deferred.Ops makeAs */ export function makeAs( fiberId: FiberId ): Effect> { return Effect.sync(Deferred.unsafeMake(fiberId)) }