Skip to content

v1.2.0

Compare
Choose a tag to compare
@azu azu released this 05 Sep 14:41
· 55 commits to master since this release

Features

  • types: support Application(name) (#6) (fb0d4f9)
import { Application } from "@jxa/types";
import { GoogleChrome } from "./fixtures/GoogleChrome";
// Pass Custom Application type as generics
const chrome = Application<GoogleChrome>("Google Chrome");
const frontWindow: GoogleChrome.Window = chrome.app.windows[0];