We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent f479f70 commit 8ca96a7Copy full SHA for 8ca96a7
src/components/AudioPlayer/index.ts
@@ -1,3 +1,4 @@
1
+export * from './plugins';
2
export {
3
useAudioPlayer,
4
type UseAudioPlayerProps,
src/components/AudioPlayer/plugins/AudioPlayerPlugin.ts
@@ -7,7 +7,6 @@ export type AudioPlayerPluginContext = {
7
export type AudioPlayerPlugin = {
8
id: string;
9
onInit?(ctx: AudioPlayerPluginContext): void;
10
- onSeek?(ctx: AudioPlayerPluginContext & { secondsElapsed: number }): void;
11
onError?(ctx: AudioPlayerPluginContext & RegisterAudioPlayerErrorParams): void;
12
onRemove?(ctx: AudioPlayerPluginContext): void;
13
};
src/components/AudioPlayer/plugins/index.ts
@@ -0,0 +1 @@
+export * from './AudioPlayerPlugin';
0 commit comments