UNPKG

n8n-nodes-instagram-integrations

Version:

N8N nodes for Instagram API integration with OAuth2 authentication

18 lines (17 loc) 754 B
import type { IHookFunctions, INodeType, INodeTypeDescription, IWebhookFunctions, IWebhookResponseData } from 'n8n-workflow'; export declare class InstagramTrigger implements INodeType { description: INodeTypeDescription; webhookMethods: { default: { checkExists(this: IHookFunctions): Promise<boolean>; create(this: IHookFunctions): Promise<boolean>; delete(this: IHookFunctions): Promise<boolean>; }; setup: { checkExists(this: IHookFunctions): Promise<boolean>; create(this: IHookFunctions): Promise<boolean>; delete(this: IHookFunctions): Promise<boolean>; }; }; webhook(this: IWebhookFunctions): Promise<IWebhookResponseData>; }