mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
3118d36f0a
* refactor * changeset * fixes
14 lines
465 B
TypeScript
14 lines
465 B
TypeScript
import { transformChildren } from '@plugin/transformers/partials';
|
|
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
|
|
},
|
|
...(await transformChildren(node))
|
|
};
|
|
};
|