Files
TypeScript/src/lib
Micah Zoltu b601487905 Updates Uint8ArrayConstructor to match MDN documentation. (#38449)
* Updates Uint8ArrayConstructor to match MDN documentation.

https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Uint8Array/Uint8Array
```
new Uint8Array(); // new in ES2017
new Uint8Array(length);
new Uint8Array(typedArray);
new Uint8Array(object);
new Uint8Array(buffer [, byteOffset [, length]]);
```
While the previous constructors aren't significantly different from the new, it would prevent someone from doing `new Uint8Array(myBuffer, undefined, undefined)` since there was no overload that accepted undefined as a second parameter and buffer as first.
Fixes #38446

* Fixes constructor defenition for all other typed arrays.

* Renames property to `array` since it is no longer an `arrayOrBuffer`.
2020-07-30 08:51:50 -04:00
..
2020-06-12 13:55:40 -07:00
2020-03-26 13:55:56 -07:00
2020-03-26 13:55:56 -07:00
2019-06-27 11:30:03 +03:00
2019-07-18 15:06:56 +03:00
2020-03-11 08:36:00 -07:00
2019-06-27 11:30:03 +03:00
2020-06-12 13:55:40 -07:00

Read this!

The files within this directory are used to generate lib.d.ts and lib.es6.d.ts.

Generated files

Any files ending in .generated.d.ts aren't meant to be edited by hand. If you need to make changes to such files, make a change to the input files for our library generator.