您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

processScreenshot.js 398B

12345678910
  1. /**
  2. * Helper method used to process screenshots captured by the {@code ScreenshotCaptureEffect}.
  3. *
  4. * @param {Blob} imageBlob - The blob of the screenshot that has to be processed.
  5. * @param {Object} options - Custom options required for processing.
  6. * @returns {Promise<void>}
  7. */
  8. export async function processScreenshot(imageBlob, options) { // eslint-disable-line no-unused-vars
  9. return;
  10. }