fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStartRecordingDialog

This commit is contained in:
tmoldovan8x8 2021-12-20 08:41:29 +02:00 committed by titus.moldovan
parent ef9913c1c7
commit 8d928ad315
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.
*