I'm trying to model `blobParts` of https://developer.mozilla.org/en-US/docs/Web/API/Blob/Blob#blobparts for the new WebAPI bindings. ```res @unboxed type blobPart = | String(string) | Blob(blob) | ArrayBuffer(ArrayBuffer.t) | TypedArray(TypedArray.t<int>) ``` However, I cannot use `ArrayBuffer.t` and `TypedArray.t` in combination with the `@unboxed`. Could some of these be extended?