import { Microphone } from './microphone';
export class ReSpeakerMicrophone implements Microphone {
public displayName: string;
constructor() {
this.displayName = 'ReSpeaker 7-Mic Array';
}
}
export const respeaker = new ReSpeakerMicrophone();
export default respeaker;