n8n-nodes-apitable
Version:
Apitable integration for n8n
13 lines (12 loc) • 411 B
TypeScript
import { INodeType, INodeTypeDescription } from "n8n-workflow";
import { getDatasheets, getSpaces, getViews } from "./LoadOptions";
export declare class Apitable implements INodeType {
description: INodeTypeDescription;
methods: {
loadOptions: {
getSpaces: typeof getSpaces;
getDatasheets: typeof getDatasheets;
getViews: typeof getViews;
};
};
}