@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.
@@ -18,7 +18,7 @@ and limitations under the License.
18
18
  /// <reference no-default-lib="true"/>
19
19
 
20
20
 
21
- interface Object {
21
+ interface ObjectConstructor {
22
22
  /**
23
23
  * Determines whether an object has a property with the specified name.
24
24
  * @param o An object.
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.