mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 05:33:02 -05:00
88b3e5f69c
* Implement progress bar * remove postmessage
14 lines
469 B
TypeScript
14 lines
469 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: await translateChildren(node.children)
|
|
};
|
|
};
|