UNPKG

dynamate-design-to-code

Version:

A powerful tool for converting Figma designs into high-quality, production-ready code with built-in best practices and customizable rulesets

11 lines (10 loc) 265 B
interface FigmaUrlParts { fileId: string; nodeId: string; } /** * Parse a Figma URL or section link to extract fileId and nodeId * Supports both full URLs and section links */ export declare function parseFigmaUrl(url: string): FigmaUrlParts; export {};