@cloudflare/workers-types 4.20250503.0 → 4.20250505.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/experimental/index.d.ts +1 -0
- package/experimental/index.ts +1 -0
- package/package.json +1 -1
package/experimental/index.d.ts
CHANGED
|
@@ -468,6 +468,7 @@ declare abstract class Navigator {
|
|
|
468
468
|
readonly userAgent: string;
|
|
469
469
|
readonly hardwareConcurrency: number;
|
|
470
470
|
readonly language: string;
|
|
471
|
+
readonly languages: string[];
|
|
471
472
|
}
|
|
472
473
|
/**
|
|
473
474
|
* The Workers runtime supports a subset of the Performance API, used to measure timing and performance,
|
package/experimental/index.ts
CHANGED
|
@@ -473,6 +473,7 @@ export declare abstract class Navigator {
|
|
|
473
473
|
readonly userAgent: string;
|
|
474
474
|
readonly hardwareConcurrency: number;
|
|
475
475
|
readonly language: string;
|
|
476
|
+
readonly languages: string[];
|
|
476
477
|
}
|
|
477
478
|
/**
|
|
478
479
|
* The Workers runtime supports a subset of the Performance API, used to measure timing and performance,
|
package/package.json
CHANGED