API Reference
This object can be used to launch and control NVDA.
Here's a typical example:
import { nvda } from "@guidepup/guidepup";(async () => { // Start NVDA. await nvda.start(); // Move to the next item. await nvda.next(); // Stop NVDA. await nvda.stop();})(); Copy
import { nvda } from "@guidepup/guidepup";(async () => { // Start NVDA. await nvda.start(); // Move to the next item. await nvda.next(); // Stop NVDA. await nvda.stop();})();
API Reference
This object can be used to launch and control NVDA.
Here's a typical example: