MCPcopy
hub / github.com/vercel/streamdown / RemendHandler

Interface RemendHandler

packages/remend/src/index.ts:35–42  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

33 * Handler function that transforms text during streaming.
34 */
35export interface RemendHandler {
36 /** Handler function: takes text, returns modified text */
37 handle: (text: string) => string;
38 /** Unique identifier for this handler */
39 name: string;
40 /** Priority (lower runs first). Built-in priorities: 0-100. Default: 100 */
41 priority?: number;
42}
43
44/**
45 * Configuration options for the remend function.

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected