Skip to content
1 min read · 40 words

Type Alias: DispatchMessageDeleteFn

ts
type DispatchMessageDeleteFn = (
  ctx: DispatchContext,
  id: string,
) => void | Promise<void>;

Removes a message by ID (LLM execution context variant).

Parameters

ParameterType
ctxDispatchContext
idstring

Returns

void | Promise<void>