(args?: Partial<EditorContent.GetContentArgs>)
| 881 | public getContent(args: { format: 'tree' } & Partial<EditorContent.GetContentArgs>): AstNode; |
| 882 | public getContent(args?: Partial<EditorContent.GetContentArgs>): string; |
| 883 | public getContent(args?: Partial<EditorContent.GetContentArgs>): EditorContent.Content { |
| 884 | return EditorContent.getContent(this, args); |
| 885 | } |
| 886 | |
| 887 | /** |
| 888 | * Inserts content at caret position. |
no outgoing calls
no test coverage detected