UNPKG

@effect-ts/system

Version:

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

33 lines (29 loc) 905 B
// ets_tracing: off import "../Operator/index.js" /** * Ported from https://github.com/zio/zio/blob/master/core/shared/src/main/scala/zio/Promise.scala * * Copyright 2020 Michael Arnaldi and the Matechs Garage Contributors. */ // codegen:start {preset: barrel, include: ./*.ts, exclude: ./deps.ts} export * from "./await.js" export * from "./complete.js" export * from "./completeWith.js" export * from "./die.js" export * from "./done.js" export * from "./fail.js" export * from "./halt.js" export * from "./interrupt.js" export * from "./interruptAs.js" export * from "./interruptJoiner.js" export * from "./isDone.js" export * from "./make.js" export * from "./makeAs.js" export * from "./makeManaged.js" export * from "./poll.js" export * from "./promise.js" export * from "./state.js" export * from "./succeed.js" export * from "./unsafeDone.js" export * from "./unsafeMake.js" // codegen:end