openclaw/src/gateway/server-shared.ts

9 lines
159 B
TypeScript

import type { ErrorShape } from "./protocol/index.js";
export type DedupeEntry = {
ts: number;
ok: boolean;
payload?: unknown;
error?: ErrorShape;
};