2019-09-19 16:28:57 +03:00
|
|
|
/**
|
|
|
|
|
* Helper method used to process screenshots captured by the {@code ScreenshotCaptureEffect}.
|
|
|
|
|
*
|
2023-11-09 10:01:02 +02:00
|
|
|
* @param {Blob} imageBlob - The blob of the screenshot that has to be processed.
|
2019-09-19 16:28:57 +03:00
|
|
|
* @param {Object} options - Custom options required for processing.
|
2023-11-09 10:01:02 +02:00
|
|
|
* @returns {Promise<void>}
|
2019-09-19 16:28:57 +03:00
|
|
|
*/
|
2023-11-09 10:01:02 +02:00
|
|
|
export async function processScreenshot(imageBlob, options) { // eslint-disable-line no-unused-vars
|
2025-03-17 14:08:55 +01:00
|
|
|
return await Promise.resolve();
|
2019-09-19 16:28:57 +03:00
|
|
|
}
|