import { ActiveElementAtomType, HighlightElementAtomType, SidebarAtomType, UiAtomType } from "./ui"; import { PbEditorElement } from "../../../types"; export type PbState = { activeElement?: ActiveElementAtomType; highlightElement?: HighlightElementAtomType; elements?: { [id: string]: PbEditorElement; }; ui: UiAtomType; rootElement: string; sidebar: SidebarAtomType; } & TState;