Files
klz-cables.com/.pnpm-store/v10/files/cf/d36d8c4edbf081d63a6f3611a7aed7e904e13e3f2f9f660ddc87284a60ac26bea9c6da7885e3f6a142fb569ced1eb19c2a234d46b605e26b0fa336313e6d32
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

16 lines
758 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