// ets_tracing: off import * as CS from "../../../Cause/index.js" import type * as C from "./core.js" import * as FailCause from "./failCause.js" /** * Creates a sink halting with the specified `Throwable`. */ export function die(e: E): C.Sink { return FailCause.failCause(CS.die(e)) }