(event: any)
| 461 | } |
| 462 | |
| 463 | public onChange(event: any) { |
| 464 | if (this.editor && this.props.onChange && !this.silent) { |
| 465 | const value = this.editor.getValue(); |
| 466 | this.props.onChange(value, event); |
| 467 | } |
| 468 | } |
| 469 | |
| 470 | public onSelectionChange(event: any) { |
| 471 | if (this.props.onSelectionChange) { |
no outgoing calls
no test coverage detected