import { ComponentShape } from '@ui/lib/types/shapes/componentShape'; import { TypographyStyle } from '@ui/lib/types/shapes/textShape'; import { FillStyle } from '@ui/lib/types/utils/fill'; import { ImageColor } from '@ui/lib/types/utils/imageColor'; import { Uuid } from '@ui/lib/types/utils/uuid'; export type UiComponent = { componentId: Uuid; mainInstancePage?: Uuid; mainInstanceId: Uuid; componentFigmaId: string; }; export const init = (records: Record, map: Map) => { // eslint-disable-next-line @typescript-eslint/no-unused-vars map = new Map(Object.entries(records)); }; export const typographies: Map = new Map(); export const images: Map = new Map(); export const identifiers: Map = new Map(); export const components: Map = new Map(); export const componentShapes: Map = new Map(); export const colors: Map = new Map();