@skriptfabrik/n8n-nodes-moco
Version:
MOCO community nodes for n8n
15 lines (14 loc) • 535 B
TypeScript
import type { IAuthenticateGeneric, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export interface CredentialData extends ICredentialDataDecryptedObject {
subDomain: string;
apiKey: string;
webhookSecret: string;
}
export declare class MocoApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}