© 2026 Hedgehog Software, LLC
const Branded = Schema.NonEmptyString.pipe(Schema.brand('Brand')) type Branded = typeof Branded.Type type Svc = { fn: (branded: Branded) => void } const fn = (branded: string /* Branded */) => {} const svc = { fn } satisfies Svc