fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStopRecordingDialog
This commit is contained in:
parent
315c884f0d
commit
7dd9785e48
|
@ -78,10 +78,16 @@ export default class AbstractStopRecordingDialog<P: Props>
|
|||
return true;
|
||||
}
|
||||
|
||||
/**
|
||||
* To be overwritten by web component.
|
||||
*/
|
||||
_toggleScreenshotCapture: () => void;
|
||||
|
||||
/**
|
||||
* Toggles screenshot capture feature.
|
||||
*
|
||||
* @returns {void}
|
||||
*/
|
||||
_toggleScreenshotCapture() {
|
||||
// To be implemented by subclass.
|
||||
}
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in New Issue