openclaw
Version:
Multi-channel AI gateway with extensible messaging integrations
13 lines • 507 B
TypeScript
import { r as OpenClawConfig } from "./types.openclaw-BdCLfP4c.js";
//#region src/channels/plugins/media-limits.d.ts
/** Resolves channel media limit bytes from account-specific config or agent defaults. */
declare function resolveChannelMediaMaxBytes(params: {
cfg: OpenClawConfig;
resolveChannelLimitMb: (params: {
cfg: OpenClawConfig;
accountId: string;
}) => number | undefined;
accountId?: string | null;
}): number | undefined;
//#endregion
export { resolveChannelMediaMaxBytes as t };