-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
v20.1 – Merge pull request #51 from AdobeXD/uxp-options-fix
Moved from JSDoc to type declarations for options objects
- Loading branch information
Showing
15 changed files
with
672 additions
and
701 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
### Contents of this Pull Request | ||
This PR makes changes to | ||
- [ ] The typings in the `types` folder | ||
- [ ] Configuration files (`tsconfig.json`, `jsconfig.json`, `.gitignore` etc.) | ||
- [ ] The sample files (e.g., `sample.js`) | ||
- [ ] The `README.md` or other files containing documentation | ||
- [ ] Other | ||
|
||
### Purpose of this Pull Request | ||
\[Description of what this pull request achieves / why it should get merged\] | ||
|
||
### Issues resolved by this Pull Request | ||
- fixes \[issue id\] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
# typings | ||
Typings for Adobe XD API Surfaces | ||
|
||
Instructions for using these type defintions to get autocompletion features in editors and IDEs can be found in the [repository's wiki](https://github.com/AdobeXD/typings/wiki/Autocompletion-in-editors-and-IDEs). | ||
Instructions for using these type definitions to get autocompletion features in editors and IDEs can be found in the [repository's wiki](https://github.com/AdobeXD/typings/wiki/Autocompletion-in-editors-and-IDEs). | ||
|
||
## Download | ||
|
||
The best option to download the typings is to download the latest release from https://github.com/AdobeXD/typings/releases. | ||
The best option to download the typings is to download the latest release from <https://github.com/AdobeXD/typings/releases>. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
{ | ||
"name": "@adobexd/typings", | ||
"version": "19.0.0", | ||
"version": "20.1.0", | ||
"typings": "./types/index.d.ts", | ||
"description": "Typings for Adobe XD CC", | ||
"repository": { | ||
|
@@ -27,6 +27,11 @@ | |
"email": "[email protected]", | ||
"url": "https://github.com/pklaschka" | ||
}, | ||
{ | ||
"name": "Eric Robinson", | ||
"email": "[email protected]", | ||
"url": "https://github.com/ericdrobinson" | ||
}, | ||
{ | ||
"name": "Kerri Shotts", | ||
"email": "[email protected]", | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,16 @@ | ||
{ | ||
"compilerOptions": { | ||
"strict": true, | ||
"target": "es2015", | ||
"baseUrl": "./", | ||
"lib": [ | ||
"es2015", | ||
"dom" | ||
], | ||
"paths": { | ||
"*": [ | ||
"types/*" | ||
] | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.