Files
openclaw/extensions/voice-call/src/core-bridge.ts
2026-03-17 10:36:48 -07:00

15 lines
321 B
TypeScript

import type { OpenClawPluginApi } from "../api.js";
import type { VoiceCallTtsConfig } from "./config.js";
export type CoreConfig = {
session?: {
store?: string;
};
messages?: {
tts?: VoiceCallTtsConfig;
};
[key: string]: unknown;
};
export type CoreAgentDeps = OpenClawPluginApi["runtime"]["agent"];