1 | /** |
||
2 | * @fileoverview Externs for bitdepth 7.0 |
||
3 | * |
||
4 | * @see https://github.com/rochars/bitdepth |
||
5 | * @externs |
||
6 | */ |
||
7 | |||
8 | /** |
||
9 | * Change the bit depth of samples. The input array. |
||
10 | * @param {!TypedArray} input The samples. |
||
11 | * @param {string} original The original bit depth of the data. |
||
12 | * One of "8" ... "53", "32f", "64" |
||
13 | * @param {string} target The desired bit depth for the data. |
||
14 | * One of "8" ... "53", "32f", "64" |
||
15 | * @param {!TypedArray} output The output array. |
||
16 | */ |
||
17 | function bitDepth(input, original, target, output) {} |
||
0 ignored issues
–
show
|
|||
18 |
This check looks for parameters in functions that are not used in the function body and are not followed by other parameters which are used inside the function.