mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
19 lines
346 B
TypeScript
19 lines
346 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
export class ClickUpApi implements ICredentialType {
|
|
name = 'clickUpApi';
|
|
displayName = 'ClickUp API';
|
|
documentationUrl = 'clickUp';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|