import { ISelection } from "../ISelection"; import { createStateContext } from "./util/StateContext"; // This provides information about the current selection export const selectionContext = createStateContext(null); export const isSelectingContext = createStateContext(false);