@workers-community/workers-types 4.20250429.0 → 4.20250502.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/index.d.ts +1 -0
- package/index.ts +1 -0
- package/package.json +1 -1
package/index.d.ts
CHANGED
|
@@ -465,6 +465,7 @@ declare abstract class Navigator {
|
|
|
465
465
|
): boolean;
|
|
466
466
|
readonly userAgent: string;
|
|
467
467
|
readonly hardwareConcurrency: number;
|
|
468
|
+
readonly language: string;
|
|
468
469
|
}
|
|
469
470
|
/**
|
|
470
471
|
* The Workers runtime supports a subset of the Performance API, used to measure timing and performance,
|
package/index.ts
CHANGED
|
@@ -470,6 +470,7 @@ export declare abstract class Navigator {
|
|
|
470
470
|
): boolean;
|
|
471
471
|
readonly userAgent: string;
|
|
472
472
|
readonly hardwareConcurrency: number;
|
|
473
|
+
readonly language: string;
|
|
473
474
|
}
|
|
474
475
|
/**
|
|
475
476
|
* The Workers runtime supports a subset of the Performance API, used to measure timing and performance,
|