UNPKG

snips-sam

Version:

The Snips Assistant Manager

14 lines (9 loc) 294 B
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;