mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 21:53:27 -05:00
10 lines
324 B
TypeScript
10 lines
324 B
TypeScript
import { PenpotDocument } from '@ui/lib/types/penpotDocument';
|
|
|
|
import { transformPageNode } from '.';
|
|
|
|
export const transformDocumentNode = async (node: DocumentNode): Promise<PenpotDocument> => {
|
|
return {
|
|
name: node.name,
|
|
children: await Promise.all(node.children.map(child => transformPageNode(child)))
|
|
};
|
|
};
|