@ones-editor/editor 2.5.1-beta.4 → 2.5.1-beta.6

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.
@@ -0,0 +1,5 @@
1
+ import { DocBox } from '../../../../../@ones-editor/core';
2
+ export interface ImageBoxData extends DocBox {
3
+ src: string;
4
+ }
5
+ export default function convertToMarkdown(converters: unknown, boxData: DocBox): string;
@@ -5,6 +5,7 @@ import MentionBoxToMarkdown from './mention';
5
5
  import TaskLinkBoxToMarkdown from './task-link';
6
6
  import KnownLinkBoxToMarkdown from './known-link';
7
7
  import DateBoxToMarkdown from './date';
8
+ import ImageBoxToMarkdown from './image';
8
9
  export declare function getBoxes(): {
9
10
  br: typeof BrBoxToMarkdown;
10
11
  file: typeof FileBoxToMarkdown;
@@ -13,4 +14,5 @@ export declare function getBoxes(): {
13
14
  date: typeof DateBoxToMarkdown;
14
15
  'task-link': typeof TaskLinkBoxToMarkdown;
15
16
  'known-link': typeof KnownLinkBoxToMarkdown;
17
+ image: typeof ImageBoxToMarkdown;
16
18
  };