- Automatically extracts Figma API
- Full types and enums support.
- Comments & other endpoints support in the next update.
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);
...
});