From 9705b7186cd13a882d252523f716111f481119e4 Mon Sep 17 00:00:00 2001 From: Daniel Rosenwasser Date: Fri, 20 Jan 2023 00:15:00 +0000 Subject: [PATCH] Remove (hopefully) unnecessary overload. --- src/lib/es5.d.ts | 6 ------ 1 file changed, 6 deletions(-) diff --git a/src/lib/es5.d.ts b/src/lib/es5.d.ts index f7b13900ab7..2a6a4af5fec 100644 --- a/src/lib/es5.d.ts +++ b/src/lib/es5.d.ts @@ -203,12 +203,6 @@ interface ObjectConstructor { */ freeze(f: T): T; - /** - * Prevents the modification of existing property attributes and values, and prevents the addition of new properties. - * @param o Object on which to lock the attributes. - */ - freeze(o: T): Readonly; - /** * Prevents the modification of existing property attributes and values, and prevents the addition of new properties. * @param o Object on which to lock the attributes.