@typescript-deploys/pr-build 4.7.0-pr-48168-8 → 4.7.0-pr-48094-5
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/lib/lib.es2022.object.d.ts +1 -1
- package/lib/lib.es5.d.ts +1 -1
- package/lib/tsc.js +374 -84
- package/lib/tsserver.js +545 -354
- package/lib/tsserverlibrary.d.ts +58 -15
- package/lib/tsserverlibrary.js +545 -354
- package/lib/typescript.d.ts +58 -15
- package/lib/typescript.js +529 -352
- package/lib/typescriptServices.d.ts +58 -15
- package/lib/typescriptServices.js +529 -352
- package/lib/typingsInstaller.js +432 -90
- package/package.json +1 -10
package/lib/lib.es5.d.ts
CHANGED
|
@@ -230,7 +230,7 @@ interface ObjectConstructor {
|
|
|
230
230
|
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
|
|
231
231
|
* @param o Object on which to lock the attributes.
|
|
232
232
|
*/
|
|
233
|
-
freeze<T extends {[idx: string]: U | null | undefined | object}, U extends string | bigint | number | symbol>(o: T): Readonly<T>;
|
|
233
|
+
freeze<T extends {[idx: string]: U | null | undefined | object}, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
|
|
234
234
|
|
|
235
235
|
/**
|
|
236
236
|
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
|