typescript
Advanced tools
Comparing version 5.7.0-dev.20241101 to 5.7.0-dev.20241102
@@ -113,5 +113,5 @@ /*! ***************************************************************************** | ||
/** | ||
* Adds a callback to be invoked either before static initializers are run (when | ||
* decorating a `static` element), or before instance initializers are run (when | ||
* decorating a non-`static` element). | ||
* Adds a callback to be invoked either after static methods are defined but before | ||
* static initializers are run (when decorating a `static` element), or before instance | ||
* initializers are run (when decorating a non-`static` element). | ||
* | ||
@@ -180,5 +180,5 @@ * @example | ||
/** | ||
* Adds a callback to be invoked either before static initializers are run (when | ||
* decorating a `static` element), or before instance initializers are run (when | ||
* decorating a non-`static` element). | ||
* Adds a callback to be invoked either after static methods are defined but before | ||
* static initializers are run (when decorating a `static` element), or before instance | ||
* initializers are run (when decorating a non-`static` element). | ||
*/ | ||
@@ -228,5 +228,5 @@ addInitializer(initializer: (this: This) => void): void; | ||
/** | ||
* Adds a callback to be invoked either before static initializers are run (when | ||
* decorating a `static` element), or before instance initializers are run (when | ||
* decorating a non-`static` element). | ||
* Adds a callback to be invoked either after static methods are defined but before | ||
* static initializers are run (when decorating a `static` element), or before instance | ||
* initializers are run (when decorating a non-`static` element). | ||
*/ | ||
@@ -285,5 +285,4 @@ addInitializer(initializer: (this: This) => void): void; | ||
/** | ||
* Adds a callback to be invoked either before static initializers are run (when | ||
* decorating a `static` element), or before instance initializers are run (when | ||
* decorating a non-`static` element). | ||
* Adds a callback to be invoked immediately after the auto `accessor` being | ||
* decorated is initialized (regardless if the `accessor` is `static` or not). | ||
*/ | ||
@@ -383,5 +382,4 @@ addInitializer(initializer: (this: This) => void): void; | ||
/** | ||
* Adds a callback to be invoked either before static initializers are run (when | ||
* decorating a `static` element), or before instance initializers are run (when | ||
* decorating a non-`static` element). | ||
* Adds a callback to be invoked immediately after the field being decorated | ||
* is initialized (regardless if the field is `static` or not). | ||
*/ | ||
@@ -388,0 +386,0 @@ addInitializer(initializer: (this: This) => void): void; |
@@ -394,2 +394,3 @@ /*! ***************************************************************************** | ||
new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): BigInt64Array<TArrayBuffer>; | ||
new (array: ArrayLike<bigint> | ArrayBuffer): BigInt64Array<ArrayBuffer>; | ||
@@ -671,2 +672,3 @@ /** The size in bytes of each element in the array. */ | ||
new <TArrayBuffer extends ArrayBufferLike = ArrayBuffer>(buffer: TArrayBuffer, byteOffset?: number, length?: number): BigUint64Array<TArrayBuffer>; | ||
new (array: ArrayLike<bigint> | ArrayBuffer): BigUint64Array<ArrayBuffer>; | ||
@@ -673,0 +675,0 @@ /** The size in bytes of each element in the array. */ |
@@ -5,3 +5,3 @@ { | ||
"homepage": "https://www.typescriptlang.org/", | ||
"version": "5.7.0-dev.20241101", | ||
"version": "5.7.0-dev.20241102", | ||
"license": "Apache-2.0", | ||
@@ -120,3 +120,3 @@ "description": "TypeScript is a language for application scale JavaScript development", | ||
}, | ||
"gitHead": "3e6171833e6d8481626b56a7de09ea03092fadf2" | ||
"gitHead": "11b2930fa2c9f73b0ffb725a9715b8d3c4121bbc" | ||
} |
Sorry, the diff of this file is too big to display
Sorry, the diff of this file is too big to display
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
License Policy Violation
LicenseThis package is not allowed per your license policy. Review the package's license to ensure compliance.
Found 1 instance in 1 package
22741279