n8n-nodes-allure-testops
Version:
N8N node for Allure TestOps
12 lines (11 loc) • 569 B
TypeScript
import { IAuthenticateGeneric, Icon, ICredentialDataDecryptedObject, ICredentialTestRequest, ICredentialType, IDataObject, IHttpRequestHelper, INodeProperties } from 'n8n-workflow';
export declare class AllureTestOpsApi implements ICredentialType {
name: string;
icon: Icon;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
preAuthentication: (this: IHttpRequestHelper, credentials: ICredentialDataDecryptedObject) => Promise<IDataObject>;
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}