n8n/packages/nodes-base/credentials/ClickUpApi.credentials.ts

18 lines
319 B
TypeScript
Raw Normal View History

2020-01-18 14:19:31 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class ClickUpApi implements ICredentialType {
name = 'clickUpApi';
displayName = 'ClickUp API';
properties = [
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}