Merge pull request #12172 from tamuratak/fix_typedarray

Fix the type definition of TypedArray. (PR 12156 follow-up)
This commit is contained in:
Tim van der Meij 2020-08-05 22:39:10 +02:00 committed by GitHub
commit 66d5345dea
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -100,9 +100,10 @@ function setPDFNetworkStreamFactory(pdfNetworkStreamFactory) {
}
/**
* @typedef {
* Int8Array | Uint8Array | Uint8ClampedArray | Int16Array | Uint16Array |
* Int32Array | Uint32Array | Float32Array | Float64Array
* @typedef { Int8Array | Uint8Array | Uint8ClampedArray |
* Int16Array | Uint16Array |
* Int32Array | Uint32Array | Float32Array |
* Float64Array
* } TypedArray
*/