Files
clawdbot/src/gateway/server-shared.ts
2026-01-03 19:37:09 +01:00

9 lines
159 B
TypeScript

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