n8n-nodes-base
Version:
Base nodes of n8n
17 lines • 559 B
TypeScript
import type { ICredentialType, INodeProperties } from 'n8n-workflow';
export declare class Imap implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
properties: INodeProperties[];
}
export interface ICredentialsDataImap {
host: string;
port: number;
user: string;
password: string;
secure: boolean;
allowUnauthorizedCerts: boolean;
}
export declare function isCredentialsDataImap(candidate: unknown): candidate is ICredentialsDataImap;
//# sourceMappingURL=Imap.credentials.d.ts.map