Before I start writing one, has anybody seen a typescript definition file (.d.ts) for Apple MapKit JS?
Is there an Apple MapKit JS typescript definition file?
1.8k Views Asked by Jon N At
2
There are 2 best solutions below
2

EDIT: As of 26 Oct 2020 Definitely Typed has typing definitions. This is likely the best option as of that date.
npm install --save @types/apple-mapkit-js-browser
Thanks Justin for the comment.
It's on NPM! As of 5 days ago.
https://www.npmjs.com/package/mapkit-typescript
How to use:
npm install --save-dev mapkit-typescript
Then in your tsconfig.json
ensure you have:
{
"compilerOptions": {
"typeRoots": [
"node_modules/mapkit-typescript",
"node_modules/@types"
]
}
}
Of note, if you installed his package before 20 Feb, you had to add types from node_modes/@types
to it. That is fixed in his most recent update and instructions posted above.
I was impatient and wrote one. This has some bits missing (Directions and Overlays). Feel free to finish it and submit it to DefinitelyTyped or whatever if you know how.