Type Alias NVDA

NVDA: typeof nvda

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();
})();