Add Figma Trigger Node (#2521)

*  Figma Trigger

*  Improvements

*  Small cleanup

Co-authored-by: Jan Oberhauser <jan.oberhauser@gmail.com>
This commit is contained in:
Ricardo Espinoza
2021-12-10 11:42:20 -05:00
committed by GitHub
parent 35a7ecf580
commit 2d1422f5de
5 changed files with 240 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
import {
ICredentialType,
INodeProperties,
} from 'n8n-workflow';
export class FigmaApi implements ICredentialType {
name = 'figmaApi';
displayName = 'Figma API';
documentationUrl = 'figma';
properties: INodeProperties[] = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
default: '',
},
];
}