0
Fork 0
mirror of https://github.com/penpot/penpot-exporter-figma-plugin.git synced 2025-03-11 15:21:26 -05:00
penpot-exporter-figma-plugin/plugin-src/libraries.ts
Alex Sánchez c5dd5d011e
Reworked remote components (#197)
* reworked remote components

* changeset
2024-06-28 11:40:33 +02:00

7 lines
416 B
TypeScript

import { ComponentShape } from '@ui/lib/types/shapes/componentShape';
export const textStyles: Map<string, TextStyle | undefined> = new Map();
export const paintStyles: Map<string, PaintStyle | undefined> = new Map();
export const overrides: Map<string, NodeChangeProperty[]> = new Map();
export const images: Map<string, Image | null> = new Map();
export const components: Map<string, ComponentShape> = new Map();