microsoft / microsoft/TypeScript

Cannot assign Uint8Array type to Uint8Array variable created with constructor

Ouverte
#61,793 6 commentaires 1 réaction 1 personne assignée Voir sur GitHub

@sandersn y travaille déjà.

Depuis le 4/6/2025.

Needs Investigation
Langage dominant
Go
Étoiles
111k
Forks
14.3k
Merge moyen
2 j 4 h
PR mergées (30 j)
132

Description

### 🔎 Search Terms

uint8array

### 🕗 Version & Regression Information

- This changed between versions 5.7.3 and 5.6.3
- This changed in commit or PR #59417
- This is the behavior in every version I tried, and I reviewed the FAQ for entries about Uint8Arrays
- I was unable to test this on prior versions because Uint8Array was not generic before 5.7.3

### ⏯ Playground Link

https://www.typescriptlang.org/play/?target=11&ts=5.8.3#code/GYVwdgxgLglg9mABAcwKZQIICcuIBQCUAXIgKoxhQAc2WAhgJ6IDeAUIoluiFkmKgHcyFarUZ4ADAVYBfVqwA26RHRyIAvIn5DylGjnFTWq3JrSYcheUqgqcAJhK7RBppu3C9YhpOkn7GijotFZAA

### 💻 Code

```ts
function getArr (): Uint8Array {
return new Uint8Array(0)
}

let arr = new Uint8Array(0)
arr = getArr() // fails compilation with TS2322

let arr2: Uint8Array = new Uint8Array(0)
arr2 = getArr() // this is fine
```

### 🙁 Actual behavior

TS2322 is thrown during compilation.

### 🙂 Expected behavior

I should be able to assign a value of type `Uint8Array` to a variable initialised with the `Uint8Array` constructor without specifying extra generics or types.

### Additional information about the issue

The compilation error is:

```
Type 'Uint8Array' is not assignable to type 'Uint8Array'.
Type 'ArrayBufferLike' is not assignable to type 'ArrayBuffer'.
Type 'SharedArrayBuffer' is missing the following properties from type 'ArrayBuffer': resizable, resize, detached, transfer, transferToFixedLength(2322)
```

Guide de contribution

Ouvrir le guide de contribution

Par où commencer

  1. Lisez l'issue en entier, puis le guide de contribution du projet.
  2. Signalez en commentaire que vous la prenez — cela évite que deux personnes fassent le même travail.
  3. Forkez le dépôt et travaillez sur une branche.
  4. Ouvrez une pull request qui référence le numéro de l'issue.

Évaluation

Cette issue n'a pas encore été évaluée.

Recevez les nouvelles issues par e-mail

Un résumé court des issues GitHub adaptées aux débutants.