UNPKG

@effect-ts/system

Version:

Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.

27 lines (23 loc) 758 B
// ets_tracing: off import "../Operator/index.js" /** * Ported from https://github.com/zio/zio/blob/series/2.x/core/shared/src/main/scala/zio/ZFiberRef.scala * * Copyright 2020 Michael Arnaldi and the Matechs Garage Contributors. */ // codegen:start {preset: barrel, include: ./*.ts, exclude: ./excl-*.ts} export * from "./fiberRef.js" export * from "./get.js" export * from "./getAndSet.js" export * from "./getAndUpdate.js" export * from "./getAndUpdateSome.js" export * from "./locally.js" export * from "./make.js" export * from "./modify.js" export * from "./modifySome.js" export * from "./set.js" export * from "./update.js" export * from "./updateAndGet.js" export * from "./updateSome.js" export * from "./updateSomeAndGet.js" // codegen:end