© 2026 Hedgehog Software, LLC
Schema.Void
undefined
import { Schema } from "effect" const foo = (f: () => void) => Schema.encodeSync(Schema.Void)(f()) console.log(foo(() => 'bar')) // => logs "bar"