fix(rn, recording) adds _toggleScreenshotCapture function to AbstractStopRecordingDialog

This commit is contained in:
tmoldovan8x8 2022-01-05 16:52:20 +02:00 committed by GitHub
parent 315c884f0d
commit 7dd9785e48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 9 additions and 3 deletions

View File

@ -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.
}
}
/**