@kailashg101/mcp-figma-to-code
Version:
MCP server for converting Figma designs to React Native components
15 lines (14 loc) • 667 B
TypeScript
export declare function camelCaseToDash(string: string): string;
export declare function createFolder(path: string): Promise<void>;
export declare function fetchSVGURL(id: string): Promise<any>;
export declare function writeToFile(filename: string, data: string): Promise<void>;
interface FigmaNode {
id: string;
name: string;
}
export declare function findAllByValue(obj: any, valueToFind: string): FigmaNode[];
export declare function toPascalCase(str: string): string;
export declare const normalizeName: (name: string) => string;
export declare function toCamelCase(str: string): string;
export declare function fetchFigmaData(): Promise<any>;
export {};