TeaWeb/shared/backend.d/audio/recorder.d.ts

9 lines
361 B
TypeScript
Raw Normal View History

2020-03-30 13:44:18 +02:00
import {AbstractInput, InputDevice, LevelMeter} from "tc-shared/voice/RecorderBase";
export function devices() : InputDevice[];
export function device_refresh_available() : boolean;
export function refresh_devices() : Promise<void>;
export function create_input() : AbstractInput;
export function create_levelmeter(device: InputDevice) : Promise<LevelMeter>;