mirror of
https://gitcode.com/GitHub_Trending/ji/jitsi-meet.git
synced 2025-12-30 11:22:31 +00:00
11 lines
422 B
JavaScript
11 lines
422 B
JavaScript
/**
|
|
* 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 await Promise.resolve();
|
|
}
|