/**
* Creates a new `ScopedRef` from the specified value. This method should
* not be used for values whose creation require the acquisition of resources.
*
* @tsplus static effect/core/io/ScopedRef.Ops make
*/
export function make(value: LazyArg): Effect> {
return ScopedRef.fromAcquire(Effect.sync(value))
}