mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
10 lines
542 B
TypeScript
10 lines
542 B
TypeScript
import { ComponentShape } from '@ui/lib/types/shapes/componentShape';
|
|
|
|
import { RemoteComponentsLibrary } from './RemoteComponents';
|
|
|
|
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 remoteComponents = new RemoteComponentsLibrary();
|