mirror of
https://github.com/penpot/penpot.git
synced 2026-03-21 18:03:47 +00:00
* ✨ Add core changes for mcp server * ✨ Changes to plugins-runtime to add mcp extensions * ✨ Changes to MCP plugin * ✨ Changes post-review and ci fixes
8 lines
168 B
TypeScript
8 lines
168 B
TypeScript
import { z } from 'zod';
|
|
|
|
export const openUISchema = z.object({
|
|
width: z.number().positive(),
|
|
height: z.number().positive(),
|
|
hidden: z.boolean().optional(),
|
|
});
|