mirror of https://github.com/openclaw/openclaw.git
fix(slack): tighten threadId type to satisfy lint
This commit is contained in:
parent
753491ab80
commit
f03ea76db3
|
|
@ -54,7 +54,7 @@ async function sendSlackOutboundMessage(params: {
|
|||
accountId?: string | null;
|
||||
deps?: { sendSlack?: typeof sendMessageSlack } | null;
|
||||
replyToId?: string | null;
|
||||
threadId?: unknown;
|
||||
threadId?: string | number | null;
|
||||
identity?: OutboundIdentity;
|
||||
}) {
|
||||
const send = params.deps?.sendSlack ?? sendMessageSlack;
|
||||
|
|
|
|||
Loading…
Reference in New Issue