mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-07 15:21:23 +00:00
fix: dedupe probe/token base types (#16986) (thanks @iyoda)
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import type { BaseProbeResult } from "../channels/plugins/types.js";
|
||||
import { createSlackWebClient } from "./client.js";
|
||||
|
||||
export type SlackProbe = {
|
||||
ok: boolean;
|
||||
export type SlackProbe = BaseProbeResult & {
|
||||
status?: number | null;
|
||||
error?: string | null;
|
||||
elapsedMs?: number | null;
|
||||
bot?: { id?: string; name?: string };
|
||||
team?: { id?: string; name?: string };
|
||||
|
||||
Reference in New Issue
Block a user