Skip to content

Commit

Permalink
Merge pull request #12172 from tamuratak/fix_typedarray
Browse files Browse the repository at this point in the history
Fix the type definition of TypedArray. (PR 12156 follow-up)
  • Loading branch information
timvandermeij authored Aug 5, 2020
2 parents 63e33a5 + a0f0ab7 commit 66d5345
Showing 1 changed file with 4 additions and 3 deletions.
7 changes: 4 additions & 3 deletions src/display/api.js
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/

Expand Down

0 comments on commit 66d5345

Please sign in to comment.