Files
openclaw/src/gateway/events.ts
2026-02-19 10:00:41 +01:00

8 lines
241 B
TypeScript

import type { UpdateAvailable } from "../infra/update-startup.js";
export const GATEWAY_EVENT_UPDATE_AVAILABLE = "update.available" as const;
export type GatewayUpdateAvailableEventPayload = {
updateAvailable: UpdateAvailable | null;
};