mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-21 21:23:06 -05:00
303cc833a0
* wip * wip * wip * wip * wip * fixes * fixes * fixes * fixes * fixes * fixes * fixes * fixes * fixes
9 lines
541 B
TypeScript
9 lines
541 B
TypeScript
import { ComponentShape } from '@ui/lib/types/shapes/componentShape';
|
|
import { ComponentProperty } from '@ui/types';
|
|
|
|
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();
|
|
export const componentProperties: Map<string, ComponentProperty> = new Map();
|