@typescript/native-preview-darwin-x64 7.0.0-dev.20250603.1 → 7.0.0-dev.20250604.1
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.decorators.d.ts +13 -15
- package/lib/lib.dom.d.ts +1884 -361
- package/lib/lib.dom.iterable.d.ts +9 -7
- package/lib/lib.es2015.iterable.d.ts +69 -54
- package/lib/lib.es2020.bigint.d.ts +43 -7
- package/lib/lib.es2023.array.d.ts +24 -24
- package/lib/lib.es2024.sharedmemory.d.ts +1 -1
- package/lib/lib.es5.d.ts +60 -51
- package/lib/lib.esnext.d.ts +2 -0
- package/lib/lib.esnext.float16.d.ts +443 -0
- package/lib/lib.esnext.iterator.d.ts +1 -1
- package/lib/lib.esnext.promise.d.ts +34 -0
- package/lib/lib.webworker.d.ts +571 -87
- package/lib/lib.webworker.iterable.d.ts +6 -7
- package/lib/tsgo +0 -0
- package/package.json +2 -2
package/lib/lib.decorators.d.ts
CHANGED
|
@@ -110,9 +110,9 @@ interface ClassMethodDecoratorContext<
|
|
|
110
110
|
};
|
|
111
111
|
|
|
112
112
|
/**
|
|
113
|
-
* Adds a callback to be invoked either
|
|
114
|
-
* decorating a `static` element), or before instance
|
|
115
|
-
* decorating a non-`static` element).
|
|
113
|
+
* Adds a callback to be invoked either after static methods are defined but before
|
|
114
|
+
* static initializers are run (when decorating a `static` element), or before instance
|
|
115
|
+
* initializers are run (when decorating a non-`static` element).
|
|
116
116
|
*
|
|
117
117
|
* @example
|
|
118
118
|
* ```ts
|
|
@@ -176,9 +176,9 @@ interface ClassGetterDecoratorContext<
|
|
|
176
176
|
};
|
|
177
177
|
|
|
178
178
|
/**
|
|
179
|
-
* Adds a callback to be invoked either
|
|
180
|
-
* decorating a `static` element), or before instance
|
|
181
|
-
* decorating a non-`static` element).
|
|
179
|
+
* Adds a callback to be invoked either after static methods are defined but before
|
|
180
|
+
* static initializers are run (when decorating a `static` element), or before instance
|
|
181
|
+
* initializers are run (when decorating a non-`static` element).
|
|
182
182
|
*/
|
|
183
183
|
addInitializer(initializer: (this: This) => void): void;
|
|
184
184
|
|
|
@@ -223,9 +223,9 @@ interface ClassSetterDecoratorContext<
|
|
|
223
223
|
};
|
|
224
224
|
|
|
225
225
|
/**
|
|
226
|
-
* Adds a callback to be invoked either
|
|
227
|
-
* decorating a `static` element), or before instance
|
|
228
|
-
* decorating a non-`static` element).
|
|
226
|
+
* Adds a callback to be invoked either after static methods are defined but before
|
|
227
|
+
* static initializers are run (when decorating a `static` element), or before instance
|
|
228
|
+
* initializers are run (when decorating a non-`static` element).
|
|
229
229
|
*/
|
|
230
230
|
addInitializer(initializer: (this: This) => void): void;
|
|
231
231
|
|
|
@@ -279,9 +279,8 @@ interface ClassAccessorDecoratorContext<
|
|
|
279
279
|
};
|
|
280
280
|
|
|
281
281
|
/**
|
|
282
|
-
* Adds a callback to be invoked
|
|
283
|
-
*
|
|
284
|
-
* decorating a non-`static` element).
|
|
282
|
+
* Adds a callback to be invoked immediately after the auto `accessor` being
|
|
283
|
+
* decorated is initialized (regardless if the `accessor` is `static` or not).
|
|
285
284
|
*/
|
|
286
285
|
addInitializer(initializer: (this: This) => void): void;
|
|
287
286
|
|
|
@@ -376,9 +375,8 @@ interface ClassFieldDecoratorContext<
|
|
|
376
375
|
};
|
|
377
376
|
|
|
378
377
|
/**
|
|
379
|
-
* Adds a callback to be invoked
|
|
380
|
-
*
|
|
381
|
-
* decorating a non-`static` element).
|
|
378
|
+
* Adds a callback to be invoked immediately after the field being decorated
|
|
379
|
+
* is initialized (regardless if the field is `static` or not).
|
|
382
380
|
*/
|
|
383
381
|
addInitializer(initializer: (this: This) => void): void;
|
|
384
382
|
|