react-native-audio-api
Version:
react-native-audio-api provides system for controlling audio in React Native environment compatible with Web Audio API specification
9 lines (7 loc) • 305 B
text/typescript
import { IStreamerNode } from '../interfaces';
import AudioScheduledSourceNode from './AudioScheduledSourceNode';
export default class StreamerNode extends AudioScheduledSourceNode {
public initialize(streamPath: string): boolean {
return (this.node as IStreamerNode).initialize(streamPath);
}
}