UNPKG

ableton-mcp-server-rag

Version:
14 lines (13 loc) 438 B
import { z } from 'zod'; import { DeviceGettableProperties } from '../types/zod-types.js'; declare class DeviceTools { getDeviceProperties({ device_id, properties }: { device_id: string; properties: z.infer<typeof DeviceGettableProperties>; }): Promise<any>; setDeviceParameter({ parameter_id, value }: { parameter_id: string; value: any; }): Promise<string>; } export default DeviceTools;