@huddle01/web-core
Version:
The Huddle01 Javascript SDK offers a comprehensive suite of methods and event listeners that allow for seamless real-time audio and video communication with minimal coding required.
44 lines (42 loc) • 947 B
TypeScript
declare const defaultMediaConstraints: {
cam: {
video: {
width: {
ideal: number;
};
height: {
ideal: number;
};
};
};
mic: {
audio: {
echoCancellation: boolean;
noiseSuppression: boolean;
};
};
screen: {
video: {
displaySurface: string;
logicalSurface: boolean;
cursor: boolean;
width: {
ideal: number;
max: number;
};
height: {
ideal: number;
max: number;
};
frameRate: {
ideal: number;
max: number;
};
};
audio: {
echoCancellation: boolean;
noiseSuppression: boolean;
};
};
};
export { defaultMediaConstraints as default };