mirror of
https://github.com/n8n-io/n8n.git
synced 2024-11-10 22:54:05 -08:00
26 lines
425 B
TypeScript
26 lines
425 B
TypeScript
import {
|
|
ICredentialType,
|
|
INodeProperties,
|
|
} from 'n8n-workflow';
|
|
|
|
|
|
export class TogglApi implements ICredentialType {
|
|
name = 'togglApi';
|
|
displayName = 'Toggl API';
|
|
documentationUrl = 'toggl';
|
|
properties: INodeProperties[] = [
|
|
{
|
|
displayName: 'Username',
|
|
name: 'username',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
{
|
|
displayName: 'Password',
|
|
name: 'password',
|
|
type: 'string',
|
|
default: '',
|
|
},
|
|
];
|
|
}
|