({ text }: { text: string })
| 506 | } |
| 507 | |
| 508 | public onPaste({ text }: { text: string }) { |
| 509 | if (this.props.onPaste) { |
| 510 | this.props.onPaste(text); |
| 511 | } |
| 512 | } |
| 513 | |
| 514 | public onScroll() { |
| 515 | if (this.props.onScroll) { |
no outgoing calls
no test coverage detected