2024-06-26 01:11:57 -05:00
|
|
|
import { ComponentShape } from '@ui/lib/types/shapes/componentShape';
|
2024-06-28 05:17:56 -05:00
|
|
|
import { ComponentProperty } from '@ui/types';
|
2024-06-26 01:11:57 -05:00
|
|
|
|
|
|
|
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();
|
2024-06-28 05:17:56 -05:00
|
|
|
export const componentProperties: Map<string, ComponentProperty> = new Map();
|