Skip to content

Commit

Permalink
♻️ refactor: fix react entry
Browse files Browse the repository at this point in the history
  • Loading branch information
arvinxx committed Nov 15, 2023
1 parent cdcb9cc commit 6a4631d
Show file tree
Hide file tree
Showing 2 changed files with 24 additions and 24 deletions.
24 changes: 0 additions & 24 deletions src/react.ts

This file was deleted.

24 changes: 24 additions & 0 deletions src/react/index.ts
Original file line number Diff line number Diff line change
@@ -0,0 +1,24 @@
export { default as AudioPlayer, type AudioPlayerProps } from './AudioPlayer';
export { default as AudioVisualizer, type AudioVisualizerProps } from './AudioVisualizer';
export { useAudioPlayer } from './hooks/useAudioPlayer';
export { useAudioVisualizer } from './hooks/useAudioVisualizer';
export { useBlobUrl } from './hooks/useBlobUrl';
export { useStreamAudioPlayer } from './hooks/useStreamAudioPlayer';
export { useAudioRecorder } from './useAudioRecorder';
export { useEdgeSpeech } from './useEdgeSpeech';
export { useMicrosoftSpeech } from './useMicrosoftSpeech';
export {
type OpenaiSpeechRecognitionOptions,
type OpenaiSTTFetcher,
useOpenaiSTT,
useOpenaiSTTWithPSR,
useOpenaiSTTWithRecord,
useOpenaiSTTWithSR,
} from './useOpenaiSTT';
export { useOpenaiTTS } from './useOpenaiTTS';
export { usePersistedSpeechRecognition } from './useSpeechRecognition/usePersistedSpeechRecognition';
export {
type SpeechRecognitionOptions,
useSpeechRecognition,
} from './useSpeechRecognition/useSpeechRecognition';
export { useSpeechSynthes } from './useSpeechSynthes';

0 comments on commit 6a4631d

Please sign in to comment.