UNPKG

stream-chat-react

Version:

React components to create chat conversations or livestream style chat

11 lines (10 loc) 391 B
import type { AudioPlayer, RegisterAudioPlayerErrorParams } from '../AudioPlayer'; export type AudioPlayerPluginContext = { player: AudioPlayer; }; export type AudioPlayerPlugin = { id: string; onInit?(ctx: AudioPlayerPluginContext): void; onError?(ctx: AudioPlayerPluginContext & RegisterAudioPlayerErrorParams): void; onRemove?(ctx: AudioPlayerPluginContext): void; };