UNPKG

touchdesigner-mcp-server

Version:
11 lines (10 loc) 402 B
export type PresenterFormat = "json" | "yaml" | "markdown"; export declare const DEFAULT_PRESENTER_FORMAT: PresenterFormat; export interface PresenterPayload { text: string; detailLevel?: string; structured?: unknown; context?: Record<string, unknown>; template?: string; } export declare function presentStructuredData(payload: PresenterPayload, format?: PresenterFormat): string;