* Renders the next chunk of audio and provides it as result. * * @param milliseconds The rough number of milliseconds that should be synthesized and exported as chunk. * @returns The requested chunk holding the samples and time information. * If the song completed playback `undef
(milliseconds: number)
| 122 | * @async |
| 123 | */ |
| 124 | render(milliseconds: number): Promise<AudioExportChunk | undefined>; |
| 125 | |
| 126 | /* |
| 127 | * Destroys the exporter and shuts down all related processing components. |
no outgoing calls