Variable voiceOverConst

voiceOver: VoiceOver = ...

API Reference

This object can be used to launch and control VoiceOver.

Here's a typical example:

import { voiceOver } from "@guidepup/guidepup";

(async () => {
// Start VoiceOver.
await voiceOver.start();

// Move to the next item.
await voiceOver.next();

// ... perform some commands.

// Stop VoiceOver.
await voiceOver.stop();
})();