JXA Userland JXA Versions Save

JavaScript for Automation(JXA) packages for TypeScript/Node.js.

v1.3.6

1 year ago

1.3.6 (2022-08-21)

Bug Fixes

  • global-type: fix TS2303: Circular definition of import alias (#51) (dd5c5cf)

v1.3.5

2 years ago

What's Changed

New Contributors

Full Changelog: https://github.com/JXA-userland/JXA/compare/v1.3.4...v1.3.5

v1.3.4

3 years ago

1.3.4 (2020-10-08)

Bug Fixes

  • types: fix Finder item url definition (#29) (f2ac980)
  • types: fix import file name #28

v1.3.3

3 years ago

1.3.3 (2020-08-24)

Fixes

  • @jxa/run: Change method to get environment variable #24

Fix to work on macOS Big Sur beta 5 (20A5354i)

v1.3.2

4 years ago

1.3.2 (2019-10-29)

Bug Fixes

  • run: update default buffer to 100MB (9fbe9f4), closes #18

v1.3.1

4 years ago

1.3.1 (2019-10-29)

It will fix error on TypeScript 3.3+

Fixes

v1.3.0

5 years ago

Feature

  • sdef-to-dts: support npx @jxa/sdef-to-dts <input> --output <output> #8 by @havardh

v1.2.0

5 years ago

Features

  • types: support Application<T>(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];