import { createWriter } from './utils/writer.ts' import type { Codec } from './codec.ts' export function encodeMessage (message: Partial, codec: Pick, 'encode'>): Uint8Array { const w = createWriter() codec.encode(message, w, { lengthDelimited: false }) return w.finish() }