UNPKG

@capgo/capacitor-mute

Version:

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

9 lines (8 loc) 286 B
import { WebPlugin } from '@capacitor/core'; import type { MutePlugin, MuteResponse } from './definitions'; export declare class MuteWeb extends WebPlugin implements MutePlugin { isMuted(): Promise<MuteResponse>; getPluginVersion(): Promise<{ version: string; }>; }