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

19 lines
348 B
TypeScript
Raw Normal View History

import {
ICredentialType,
NodePropertyTypes,
} from 'n8n-workflow';
export class LingvaNexApi implements ICredentialType {
name = 'lingvaNexApi';
displayName = 'LingvaNex API';
documentationUrl = 'lingvaNex';
properties = [
{
displayName: 'API Key',
name: 'apiKey',
type: 'string' as NodePropertyTypes,
default: '',
},
];
}