fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStartRecordingDialog

This commit is contained in:
tmoldovan8x8 2021-12-20 08:41:29 +02:00 committed by GitHub
parent 12bc054386
commit 476ddeac41
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -339,11 +339,17 @@ class AbstractStartRecordingDialog extends Component<Props, State> {
return true;
}
/**
* To be overwritten by web component.
*/
_toggleScreenshotCapture:() => void;
/**
* Toggles screenshot capture feature.
*
* @returns {void}
*/
_toggleScreenshotCapture() {
// To be implemented by subclass.
}
/**
* Renders the platform specific dialog content.
*