( initial: RuntimeFlags.RuntimeFlags )
| 3408 | |
| 3409 | /* @internal */ |
| 3410 | export const fiberRefMakeRuntimeFlags = ( |
| 3411 | initial: RuntimeFlags.RuntimeFlags |
| 3412 | ): Effect.Effect<FiberRef.FiberRef<RuntimeFlags.RuntimeFlags>, never, Scope.Scope> => |
| 3413 | fiberRefMakeWith(() => core.fiberRefUnsafeMakeRuntimeFlags(initial)) |
| 3414 | |
| 3415 | /** @internal */ |
| 3416 | export const currentRuntimeFlags: FiberRef.FiberRef<RuntimeFlags.RuntimeFlags> = core.fiberRefUnsafeMakeRuntimeFlags( |
nothing calls this directly
no test coverage detected