/** * @group Enums */ declare enum AppleSilentSwitchBehaviour { /** * Play audio even if the silent switch is set. */ Ignore = "ignore", /** * Mute audio if the silent switch is set. */ Obey = "obey" } export default AppleSilentSwitchBehaviour;