n8n-nodes-puppeteer-extended
Version:
n8n node for requesting webpages using Puppeteer
27 lines • 609 B
TypeScript
export interface INodeParameters {
url: string;
queryParameters: {
parameter: {
name: string;
value: string;
}[];
};
output: {
[key: string]: any;
};
globalOptions: {
[key: string]: any;
};
nodeOptions: {
[key: string]: any;
};
interactions: {
parameter: {
selector: string;
value?: string;
waitForNavigation?: boolean;
}[];
};
}
export declare const ipcRequest: (type: string, parameters: any) => Promise<any>;
//# sourceMappingURL=helpers.d.ts.map