Skip to content

Commit

Permalink
Refactor import paths in LexicalEditorState (#6178)
Browse files Browse the repository at this point in the history
  • Loading branch information
vuki365 authored May 31, 2024
1 parent 835e89b commit bbcfd03
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion packages/lexical/src/LexicalEditorState.ts
Original file line number Diff line number Diff line change
Expand Up @@ -9,13 +9,14 @@
import type {LexicalEditor} from './LexicalEditor';
import type {LexicalNode, NodeMap, SerializedLexicalNode} from './LexicalNode';
import type {BaseSelection} from './LexicalSelection';
import type {SerializedElementNode} from './nodes/LexicalElementNode';
import type {SerializedRootNode} from './nodes/LexicalRootNode';

import invariant from 'shared/invariant';

import {$isElementNode, SerializedElementNode} from '.';
import {readEditorState} from './LexicalUpdates';
import {$getRoot} from './LexicalUtils';
import {$isElementNode} from './nodes/LexicalElementNode';
import {$createRootNode} from './nodes/LexicalRootNode';

export interface SerializedEditorState<
Expand Down

0 comments on commit bbcfd03

Please sign in to comment.