/** * Makes a new `TRef` that is initialized to the specified value. * * @tsplus static effect/core/stm/TRef.Ops makeCommit */ export function makeCommit(a: LazyArg): Effect> { return TRef.make(a).commit }