Skip to content

Commit

Permalink
Fix flow (#4549)
Browse files Browse the repository at this point in the history
  • Loading branch information
zurfyx authored May 25, 2023
1 parent 7de88da commit 5cfb7fa
Showing 1 changed file with 1 addition and 6 deletions.
7 changes: 1 addition & 6 deletions packages/lexical/flow/Lexical.js.flow
Original file line number Diff line number Diff line change
Expand Up @@ -7,8 +7,6 @@
* @flow strict
*/

import type {FindCachedParentDOMNode} from '@lexical/html';

/**
* LexicalCommands
*/
Expand Down Expand Up @@ -308,10 +306,7 @@ export type DOMConversion = {
conversion: DOMConversionFn,
priority: 0 | 1 | 2 | 3 | 4,
};
export type DOMConversionFn = (
element: Node,
findCachedParentDOMNode: FindCachedParentDOMNode,
) => DOMConversionOutput;
export type DOMConversionFn = (element: Node) => DOMConversionOutput;
export type DOMChildConversion = (
lexicalNode: LexicalNode,
parentLexicalNode: ?LexicalNode | null,
Expand Down

2 comments on commit 5cfb7fa

@vercel
Copy link

@vercel vercel bot commented on 5cfb7fa May 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical – ./packages/lexical-website

lexical-git-main-fbopensource.vercel.app
lexical.dev
lexicaljs.org
lexicaljs.com
lexical-fbopensource.vercel.app
www.lexical.dev

@vercel
Copy link

@vercel vercel bot commented on 5cfb7fa May 25, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

lexical-playground – ./packages/lexical-playground

lexical-playground.vercel.app
lexical-playground-fbopensource.vercel.app
playground.lexical.dev
lexical-playground-git-main-fbopensource.vercel.app

Please sign in to comment.