Move the mouse to the specified coordinates
Requires API key authentication.
import { Skylight } from "skylight-sdk"; const skylight = new Skylight({ apikey: process.env["SKYLIGHT_APIKEY"] ?? "", }); async function run() { const result = await skylight.interact.move("<id>", { x: 100, y: 200, }); // Handle the result console.log(result); } run();
{ "message": "<string>", "status": "<string>" }
API key authentication
Status of the operation
"success"
Human-readable status message