n8n-nodes-alive5
Version:
Send and receive SMS messages via alive5
11 lines (10 loc) • 395 B
TypeScript
import type { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class Alive5Api implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
icon: "file:icons/alive5.svg";
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}