// tracing: off import type { ApiSelfType, Schema } from "../_schema/schema.js" import type { DefaultSchema } from "./withDefaults.js" import { withDefaults } from "./withDefaults.js" export function brand() { return ( self: Schema ): DefaultSchema> => { // @ts-expect-error return withDefaults(self) } }