mirror of
https://github.com/openclaw/openclaw.git
synced 2026-03-25 00:42:24 +00:00
8 lines
241 B
TypeScript
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;
|
|
};
|