Completed
Branch master (9b3c98)
by Rafael S.
03:30
created

index.d.ts ➔ decodeBlock   A

Complexity

Conditions 1

Size

Total Lines 2
Code Lines 2

Duplication

Lines 0
Ratio 0 %

Importance

Changes 0
Metric Value
cc 1
eloc 2
dl 0
loc 2
rs 10
c 0
b 0
f 0
1
// Type definitions for imaadpcm 4.0
2
// Project: https://github.com/rochars/imaadpcm
3
// Definitions by: Rafael S. Rocha <https://github.com/rochars>
4
// Definitions: https://github.com/rochars/imaadpcm
5
6
export function encode(samples: Int16Array): Uint8Array;
7
8
export function decode(samples: Uint8Array, blockAlign?: number): Int16Array;
9
10
export function encodeBlock(block: Array<number>): Array<number>;
11
12
export function decodeBlock(block: Array<number>): Array<number>;
13