@effect-ts/system
Version:
Effect-TS is a zero dependency set of libraries to write highly productive, purely functional TypeScript at scale.
8 lines • 356 B
TypeScript
import type { IO } from "../Effect/primitives.js";
import type { XFiberRef } from "./fiberRef.js";
/**
* Reads the value associated with the current fiber. Returns initial value if
* no value was `set` or inherited from parent.
*/
export declare function get<EA, EB, A, B>(fiberRef: XFiberRef<EA, EB, A, B>): IO<EB, B>;
//# sourceMappingURL=get.d.ts.map