We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 241b3f2 commit 9705b71Copy full SHA for 9705b71
src/lib/es5.d.ts
@@ -203,12 +203,6 @@ interface ObjectConstructor {
203
*/
204
freeze<T extends Function>(f: T): T;
205
206
- /**
207
- * Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
208
- * @param o Object on which to lock the attributes.
209
- */
210
- freeze<const T extends {[idx: string]: U | null | undefined | object}, U extends string | bigint | number | boolean | symbol>(o: T): Readonly<T>;
211
-
212
/**
213
* Prevents the modification of existing property attributes and values, and prevents the addition of new properties.
214
* @param o Object on which to lock the attributes.
0 commit comments