n8n-nodes-cloudinary
Version:
The official Cloudinary n8n node - upload media, update asset tags and metadata, and more
10 lines (9 loc) • 359 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class CloudinaryApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}