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/transformers/transformPageNode.ts
2024-06-19 07:05:10 +00:00

14 lines
463 B
TypeScript

import { translateChildren } from '@plugin/translators';
import { translatePageFill } from '@plugin/translators/fills';
import { PenpotPage } from '@ui/lib/types/penpotPage';
export const transformPageNode = async (node: PageNode): Promise<PenpotPage> => {
return {
name: node.name,
options: {
background: node.backgrounds.length ? translatePageFill(node.backgrounds[0]) : undefined
},
children: translateChildren(node.children)
};
};