mcpengine/servers/toast/dist/tools/menus-tools.d.ts

14 lines
435 B
TypeScript

import { z } from 'zod';
import type { ToastAPIClient } from '../api-client.js';
export declare function registerMenusTools(client: ToastAPIClient): {
name: string;
description: string;
inputSchema: z.ZodObject<{}, "strip", z.ZodTypeAny, {}, {}>;
execute: (args: any) => Promise<{
content: {
type: string;
text: string;
}[];
}>;
}[];
//# sourceMappingURL=menus-tools.d.ts.map