https://github.com/neelts/figma-api-hx
https://github.com/neelts/figma-api-hx
api api-client figma figma-api haxe
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/neelts/figma-api-hx
- Owner: neelts
- License: mit
- Created: 2018-03-30T07:11:41.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-12-03T14:20:56.000Z (over 6 years ago)
- Last Synced: 2023-08-27T06:10:23.345Z (over 1 year ago)
- Topics: api, api-client, figma, figma-api, haxe
- Language: Haxe
- Size: 83 KB
- Stars: 6
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# figma-api-hx
## Haxe Figma API
- Automatically extracts [Figma API](https://www.figma.com/developers/docs)
- Full types and enums support.
- Comments & other endpoints support in the next update.
## Example
```haxe
var figmaAPI:FigmaAPI = new FigmaAPI(FIGMA_TOKEN);
figmaAPI.files(FILE_KEY, { geometry:FilesGeometry.PATHS }, function(r:Response) {
trace(r.data.name);
trace(r.data.lastModified);
...
});
```