sykpcomposer 1.20.133 → 1.20.135

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -11,6 +11,7 @@ export declare function setNodeIndentFromDOM(domElement: HTMLElement, node: Elem
11
11
  export type SerializedHeadingNode = Spread<{
12
12
  tag: 'h1' | 'h2' | 'h3' | 'h4' | 'h5' | 'h6' | 'h7';
13
13
  id: string;
14
+ numberString?: string;
14
15
  }, SerializedElementNode>;
15
16
  export declare const DRAG_DROP_PASTE: LexicalCommand<Array<File>>;
16
17
  export type SerializedQuoteNode = SerializedElementNode;
@@ -36,6 +37,7 @@ export declare class HeadingNode extends ElementNode {
36
37
  /** @internal */
37
38
  __tag: HeadingTagType;
38
39
  private __id;
40
+ __numberString: string;
39
41
  static getType(): string;
40
42
  static clone(node: HeadingNode): HeadingNode;
41
43
  constructor(tag: HeadingTagType, key?: NodeKey);
@@ -0,0 +1 @@
1
+ export declare function NestedHeadingPlugin(): null;