0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 13:43:03 -05:00
penpot-exporter-figma-plugin/plugin-src/messageHandlers/handleExportMessage.ts
2024-04-12 18:52:19 +02:00

8 lines
274 B
TypeScript

import { transformDocumentNode } from '@plugin/transformers';
export async function handleExportMessage() {
await figma.loadAllPagesAsync();
const penpotNode = await transformDocumentNode(figma.root);
figma.ui.postMessage({ type: 'FIGMAFILE', data: penpotNode });
}