(event: any)
| 494 | } |
| 495 | |
| 496 | public onBlur(event: any) { |
| 497 | if (this.props.onBlur) { |
| 498 | this.props.onBlur(event, this.editor); |
| 499 | } |
| 500 | } |
| 501 | |
| 502 | public onCopy({ text }: { text: string }) { |
| 503 | if (this.props.onCopy) { |
no outgoing calls
no test coverage detected