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

16 lines
335 B
TypeScript
Raw Normal View History

import { ICredentialType, INodeProperties } from 'n8n-workflow';
2020-01-25 13:44:33 -08:00
export class BitlyApi implements ICredentialType {
name = 'bitlyApi';
displayName = 'Bitly API';
documentationUrl = 'bitly';
properties: INodeProperties[] = [
2020-01-25 13:44:33 -08:00
{
displayName: 'Access Token',
name: 'accessToken',
type: 'string',
2020-01-25 13:44:33 -08:00
default: '',
},
];
}