fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStartRecordingDialog
This commit is contained in:
parent
12bc054386
commit
476ddeac41
|
@ -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.
|
||||
*
|
||||
|
|
Loading…
Reference in New Issue