import { IUpdateRuntimeFlags } from "@effect/core/io/Effect/definition/primitives" /** * Updates the runtime flags. This may have a performance impact. For a * higher-performance variant, see `ZIO#withRuntimeFlags`. * * @tsplus static effect/core/io/Effect.Ops updateRuntimeFlags */ export function updateRuntimeFlags( patch: RuntimeFlags.Patch ): Effect { return new IUpdateRuntimeFlags(patch) }