import { Codec, metadata, withMetadata } from "../common/mod.js" export function documented(docs: string, inner: Codec): Codec { return withMetadata( metadata("$.documented", documented, docs, inner) as never, inner, ) }