mirror of
https://github.com/openclaw/openclaw.git
synced 2026-05-09 23:10:43 +00:00
7 lines
288 B
TypeScript
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>>>;
|
|
};
|