mirror of
https://github.com/penpot/penpot-exporter-figma-plugin.git
synced 2024-12-22 13:43:03 -05:00
7b3192936e
* wip * wip * wipo * more structure * wip * id library wip * wip * main instance working * improvements * fix node order * refactor * remove not used method * refactor * fix component set translation * refactor * add changelog * penpot lib update --------- Co-authored-by: Jordi Sala Morales <jordism91@gmail.com>
19 lines
384 B
TypeScript
19 lines
384 B
TypeScript
import { Uuid } from '@ui/lib/types/utils/uuid';
|
|
|
|
class IdLibrary {
|
|
private idMap: Map<string, Uuid> = new Map();
|
|
|
|
public init() {
|
|
this.idMap.clear();
|
|
}
|
|
|
|
public get(figmaId: string): Uuid | undefined {
|
|
return this.idMap.get(figmaId);
|
|
}
|
|
|
|
public register(figmaId: string, id: Uuid) {
|
|
this.idMap.set(figmaId, id);
|
|
}
|
|
}
|
|
|
|
export const idLibrary = new IdLibrary();
|