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

15 lines
459 B
TypeScript
Raw Normal View History

2024-04-15 07:06:38 -05:00
import { transformChildren } from '@plugin/transformers/partials';
import { translatePageFill } from '@plugin/translators';
2024-04-15 07:06:38 -05:00
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
},
2024-04-15 07:06:38 -05:00
...(await transformChildren(node))
};
};