(editorState: EditorState)
| 4 | data: RawDraftContentState |
| 5 | |
| 6 | constructor(editorState: EditorState) { |
| 7 | this.data = convertToRaw(editorState.getCurrentContent()) |
| 8 | } |
| 9 | |
| 10 | get parts() { |
| 11 | const buffer: string[] = [] |
nothing calls this directly
no outgoing calls
no test coverage detected