Files
klz-cables.com/.pnpm-store/v10/files/ba/d7ddfd47dfbc479e2a824c09940fd659f5cab9eaee887eacbd196cc9acd23c06e9533ec39e748b47c86930e6c26dcb74c070e137f808e12b4b58b40dc40009
Marc Mintel 5397309103
Some checks failed
Build & Deploy / 🔍 Prepare (push) Successful in 20s
Build & Deploy / 🧪 QA (push) Failing after 34s
Build & Deploy / 🏗️ Build (push) Has started running
Build & Deploy / 🚀 Deploy (push) Has been cancelled
Build & Deploy / 🧪 Smoke Test (push) Has been cancelled
Build & Deploy / ⚡ Lighthouse (push) Has been cancelled
Build & Deploy / 🔔 Notify (push) Has been cancelled
fix(products): fix breadcrumbs and product filtering (backport from main)
2026-02-24 16:04:21 +01:00

15 lines
742 B
Plaintext

/**
* Mobile browsers do not support `mediaDevices.getDisplayMedia` even though they have the api implemented
* Instead they return things like `NotAllowedError` when called.
*
* It's simpler for us to browser sniff first, and avoid loading the integration if we can.
*
* https://stackoverflow.com/a/58879212
* https://stackoverflow.com/a/3540295
*
* `mediaDevices.getDisplayMedia` is also only supported in secure contexts, and return a `mediaDevices is not supported` error, so we should also avoid loading the integration if we can.
*
* https://developer.mozilla.org/en-US/docs/Web/API/MediaDevices/getDisplayMedia
*/
export declare function isScreenshotSupported(): boolean;
//# sourceMappingURL=isScreenshotSupported.d.ts.map