UNPKG

@capgo/capacitor-mute

Version:

Detect if the mute switch is enabled/disabled on a device

11 lines (10 loc) 183 B
export interface MutePlugin { /** * check if the device is muted * */ isMuted(): Promise<MuteResponse>; } export interface MuteResponse { value: boolean; }