8 lines
186 B
TypeScript
8 lines
186 B
TypeScript
export interface Microphone {
|
|
microphoneNode: AudioNode | null;
|
|
microphoneStream: MediaStream | null;
|
|
label: string;
|
|
silenceDetected?: string;
|
|
deviceId?: string;
|
|
}
|