mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-12 21:32:55 +00:00
fix: dedupe probe/token base types (#16986) (thanks @iyoda)
This commit is contained in:
@@ -1,9 +1,8 @@
|
||||
import type { BaseProbeResult } from "openclaw/plugin-sdk";
|
||||
import { getMe, ZaloApiError, type ZaloBotInfo, type ZaloFetch } from "./api.js";
|
||||
|
||||
export type ZaloProbeResult = {
|
||||
ok: boolean;
|
||||
export type ZaloProbeResult = BaseProbeResult<string> & {
|
||||
bot?: ZaloBotInfo;
|
||||
error?: string;
|
||||
elapsedMs: number;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user