Skip to content

Commit

Permalink
Fix the type definition of TypedArray.
Browse files Browse the repository at this point in the history
  • Loading branch information
tamuratak committed Aug 5, 2020
1 parent 63e33a5 commit a0f0ab7
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 a0f0ab7

Please sign in to comment.