n8n-nodes-putio
Version:
n8n node for Put.io API integration
14 lines (13 loc) • 366 B
TypeScript
import { ICredentialType, NodePropertyTypes } from 'n8n-workflow';
export declare class PutioApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: {
displayName: string;
name: string;
type: NodePropertyTypes;
default: string;
description: string;
}[];
}