chore(store): remove unused stuff

This commit is contained in:
moklick
2022-08-18 17:48:41 +02:00
parent 9ad31a281b
commit 06c1f22c1f
3 changed files with 0 additions and 8 deletions

View File

@@ -11,7 +11,3 @@ declare module '*.svg' {
export default svgUrl;
export { svgComponent as ReactComponent };
}
declare const __REACT_FLOW_VERSION__: string;
declare const __ENV__: string;
declare const __INJECT_STYLES__: boolean;

View File

@@ -44,8 +44,6 @@ const initialState: ReactFlowStore = {
multiSelectionActive: false,
reactFlowVersion: typeof __REACT_FLOW_VERSION__ !== 'undefined' ? __REACT_FLOW_VERSION__ : '-',
connectionStartHandle: null,
connectOnClick: true,

View File

@@ -167,8 +167,6 @@ export type ReactFlowStore = {
multiSelectionActive: boolean;
reactFlowVersion: string;
connectionStartHandle: StartHandle | null;
onNodeDragStart?: NodeDragHandler;