UNPKG
soundfont2
Version:
latest (0.5.0)
0.5.0
0.4.0
0.3.0
0.2.1
0.2.0
0.1.0
A SoundFont2 parser for Node.js and web browsers
github.com/Mrtenz/soundfont2
Mrtenz/soundfont2
soundfont2
/
typings
/
chunks
/
samples
/
headers.d.ts
9 lines
(8 loc)
•
259 B
TypeScript
View Raw
1
2
3
4
5
6
7
8
9
import
{
SF2Chunk
}
from
'~/chunk'
;
import
{
SampleHeader
}
from
'~/types'
;
/** * Get all sample headers from a `shdr` sub-chunk. * *
@param
{
SF2Chunk
}
chunk
- The input chunk */
export
declare
const
getSampleHeaders
:
(
chunk
:
SF2Chunk
) =>
SampleHeader
[];