UNPKG

agora-classroom-sdk

Version:

For publishing npm package agora-classroom-sdk (Web & Electron). Get more information from https://docs.agora.io

18 lines (17 loc) 503 B
import { FC } from 'react'; import { BaseProps } from '../util/type'; import './index.css'; export interface VolumeProps extends BaseProps { backgroundColor?: string; activeColor?: string; width?: number; height?: number; currentVolume?: number; maxLength: number; } export declare const Volume: FC<VolumeProps>; export interface AudioVolumeProps extends BaseProps { isMicMuted?: boolean; currentVolume?: number; } export declare const AudioVolume: FC<AudioVolumeProps>;