Skip to content

Commit 0f74c23

Browse files
committed
Update exports
1 parent 652b0de commit 0f74c23

File tree

2 files changed

+11
-3
lines changed

2 files changed

+11
-3
lines changed

src/api/index.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ export { WebRTCStream, type WebRTCCodecInfo, type WebRTCStreamOptions } from './
3737
export { RTPStream, type RTPStreamOptions } from './rtp-stream.js';
3838

3939
// fMP4 Stream
40-
export { FMP4_CODECS, FMP4Stream, type FMP4Data, type FMP4StreamOptions, type MP4Box } from './fmp4-stream.js';
40+
export { FMP4_CODECS, FMP4Stream, type FMP4Data, type FMP4StreamOptions, type MP4Box, type MP4BoxType } from './fmp4-stream.js';
4141

4242
// Whisper Transcriber
4343
export { WhisperTranscriber, type WhisperSegment, type WhisperTranscriberOptions } from './whisper.js';

src/api/utilities/index.ts

Lines changed: 10 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,18 @@ export { TimestampUtils } from './timestamp.js';
2323
export { StreamingUtils } from './streaming.js';
2424

2525
// Whisper Model Downloader
26-
export { WhisperDownloader } from './whisper-model.js';
26+
export {
27+
WhisperDownloader,
28+
WHISPER_MODELS,
29+
WHISPER_VAD_MODELS,
30+
type DownloadOptions,
31+
type WhisperModelType,
32+
type WhisperModelName,
33+
type WhisperVADModelName,
34+
} from './whisper-model.js';
2735

2836
// AsyncQueue
2937
export { AsyncQueue } from './async-queue.js';
3038

3139
// Scheduler
32-
export { Scheduler } from './scheduler.js';
40+
export { Scheduler, SchedulerControl, type SchedulableComponent } from './scheduler.js';

0 commit comments

Comments
 (0)