mirror of
https://github.com/n8n-io/n8n-nodes-starter.git
synced 2025-10-28 14:12:24 -05:00
Improve explanatory comments, correct typings, make param names consistent, and simplify execute block.
23 lines
606 B
TypeScript
23 lines
606 B
TypeScript
import { ICredentialType, INodeProperties } from 'n8n-workflow';
|
|
|
|
export class ExampleCredentials implements ICredentialType {
|
|
name = 'exampleCredentials';
|
|
displayName = 'Example Credentials';
|
|
properties: INodeProperties[] = [
|
|
// Credential data to request from the user, saved in encrypted format.
|
|
// Credential properties are defined exactly like node properties.
|
|
{
|
|
displayName: 'Base URL',
|
|
name: 'url',
|
|
type: 'string',
|
|
default: '',
|
|
placeholder: 'https://example.com',
|
|
},
|
|
{
|
|
displayName: 'Access Token',
|
|
name: 'accessToken',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|