1
0
Fork 0
mirror of https://github.com/n8n-io/n8n.git synced 2025-02-02 07:01:30 -08:00
n8n/packages/nodes-base/credentials/VeroApi.credentials.ts

19 lines
307 B
TypeScript
Raw Normal View History

2019-12-17 12:33:28 -08:00
import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class VeroApi implements ICredentialType {
name = 'veroApi';
displayName = 'Vero API';
properties = [
{
displayName: 'Auth Token',
name: 'authToken',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}