You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
12345678910 |
- /**
- * Helper method used to process screenshots captured by the {@code ScreenshotCaptureEffect}.
- *
- * @param {Blob} imageBlob - The blob of the screenshot that has to be processed.
- * @param {Object} options - Custom options required for processing.
- * @returns {Promise<void>}
- */
- export async function processScreenshot(imageBlob, options) { // eslint-disable-line no-unused-vars
- return;
- }
|