figma

Haxe Figma API


Keywords
api, figma, api-client, figma-api, haxe
License
MIT
Install
haxelib install figma 0.0.3

Documentation

figma-api-hx

Haxe Figma API

  • Automatically extracts Figma API
  • Full types and enums support.
  • Comments & other endpoints support in the next update.

Example

var figmaAPI:FigmaAPI = new FigmaAPI(FIGMA_TOKEN);
figmaAPI.files(FILE_KEY, { geometry:FilesGeometry.PATHS }, function(r:Response<Document>) {
	trace(r.data.name); 
	trace(r.data.lastModified); 
	...
});