Files
openclaw/src/gateway/server-channel-runtime.types.ts
2026-04-11 13:26:50 +01:00

7 lines
288 B
TypeScript

import type { ChannelId, ChannelAccountSnapshot } from "../channels/plugins/types.public.js";
export type ChannelRuntimeSnapshot = {
channels: Partial<Record<ChannelId, ChannelAccountSnapshot>>;
channelAccounts: Partial<Record<ChannelId, Record<string, ChannelAccountSnapshot>>>;
};