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();})(); Copy
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();})();
API Reference
This object can be used to launch and control VoiceOver.
Here's a typical example: