n8n-nodes-binalyze-air
Version:
Binalyze AIR nodes for automating DFIR with n8n workflows
18 lines (17 loc) • 547 B
TypeScript
import { IAuthenticateGeneric, ICredentialTestRequest, ICredentialType, INodeProperties } from 'n8n-workflow';
export interface AirCredentials {
instanceUrl: string;
token: string;
}
export declare class AirApi implements ICredentialType {
name: string;
displayName: string;
documentationUrl: string;
icon: {
readonly light: "file:b-logo-dark.svg";
readonly dark: "file:b-logo-light.svg";
};
properties: INodeProperties[];
authenticate: IAuthenticateGeneric;
test: ICredentialTestRequest;
}