0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2024-12-22 21:53:27 -05:00
penpot-exporter-figma-plugin/plugin-src/transformers/transformPageNode.ts
Alex Sánchez 30a64ed1b3
Added support for background in pages (#56)
* added support for background in pages

* minor fix

* removed eslint ignore
2024-04-22 10:52:25 +02:00

14 lines
459 B
TypeScript

import { transformChildren } from '@plugin/transformers/partials';
import { translatePageFill } from '@plugin/translators';
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
},
...(await transformChildren(node))
};
};