@negreanucalin8x8/n8n-nodes-8x8
Version:
This is a Work in progress
18 lines (17 loc) • 486 B
TypeScript
import { IAuthenticateGeneric, ICredentialType, NodePropertyTypes } from "n8n-workflow";
export declare class EightByEight implements ICredentialType {
name: string;
displayName: string;
icon: string;
documentationUrl: string;
properties: {
typeOptions: {
password: boolean;
};
displayName: string;
name: string;
type: NodePropertyTypes;
default: string;
}[];
authenticate: IAuthenticateGeneric;
}