mirror of
https://github.com/mozilla/pdf.js.git
synced 2025-04-19 22:58:07 +02:00
Merge pull request #12172 from tamuratak/fix_typedarray
Fix the type definition of TypedArray. (PR 12156 follow-up)
This commit is contained in:
commit
66d5345dea
1 changed files with 4 additions and 3 deletions
|
@ -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
|
||||
*/
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue