We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0c5beea commit 70cf8a7Copy full SHA for 70cf8a7
integration/compat-interop/package.json
@@ -26,4 +26,4 @@
26
"devDependencies": {
27
"typescript": "4.7.4"
28
}
29
-}
+}
packages/performance/src/utils/attributes_utils.ts
@@ -45,6 +45,8 @@ const enum EffectiveConnectionType {
45
* ref: https://developer.mozilla.org/en-US/docs/Web/API/NetworkInformation
46
*/
47
interface NetworkInformationWithEffectiveType extends NetworkInformation {
48
+ // `effectiveType` is an experimental property and not included in
49
+ // TypeScript's typings for the native NetworkInformation interface
50
readonly effectiveType?: 'slow-2g' | '2g' | '3g' | '4g';
51
52
0 commit comments