import { Scope } from "@effect/core/io/Scope/definition"; import { Effect } from "@effect/core/io/Effect/definition"; /** * Forks a new scope that is a child of this scope. The child scope will * automatically be closed when this scope is closed. * @tsplus getter effect/core/io/Scope fork * @tsplus getter effect/core/io/Scope/Closeable fork * @tsplus location "@effect/core/io/Scope/operations/fork" */ export declare function fork(self: Scope): Effect; //# sourceMappingURL=fork.d.ts.map