mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 14:44:05 -08:00
be828a3808
* ✨ Add LignvaNex node * ⚡ Small improvement to LingvaNext Node Improvements to #1191 Co-authored-by: Tanay Pant <tanaypant@protonmail.com>
19 lines
348 B
TypeScript
19 lines
348 B
TypeScript
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: '',
|
|
},
|
|
];
|
|
}
|