n8n-nodes-base
Version:
Base nodes of n8n
13 lines • 630 B
TypeScript
import type { IExecuteFunctions, INodeType, INodeTypeDescription, INodeTypeBaseDescription } from 'n8n-workflow';
import { listSearch, loadOptions, resourceMapping } from './methods';
export declare class AirtableV2 implements INodeType {
description: INodeTypeDescription;
constructor(baseDescription: INodeTypeBaseDescription);
methods: {
listSearch: typeof listSearch;
loadOptions: typeof loadOptions;
resourceMapping: typeof resourceMapping;
};
execute(this: IExecuteFunctions): Promise<import("n8n-workflow").INodeExecutionData[][]>;
}
//# sourceMappingURL=AirtableV2.node.d.ts.map