An open API service indexing awesome lists of open source software.

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

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);
...
});
```