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

19 lines
310 B
TypeScript
Raw Normal View History

2019-11-05 07:17:06 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class TodoistApi implements ICredentialType {
name = 'todoistApi';
displayName = 'Todoist API';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}