n8n-nodes-binalyze-air
Version:
Binalyze AIR nodes for automating DFIR with n8n workflows
11 lines (10 loc) • 460 B
TypeScript
import { IWebhookFunctions, INodeType, INodeTypeDescription, IWebhookResponseData, ILoadOptionsFunctions, INodePropertyOptions } from 'n8n-workflow';
export declare class AirTrigger implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getEventTypes(this: ILoadOptionsFunctions): Promise<INodePropertyOptions[]>;
};
};
webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>;
}