n8n-nodes-base
Version:
Base nodes of n8n
9 lines • 304 B
TypeScript
import type { AllEntities } from 'n8n-workflow';
type NodeMap = {
record: 'create' | 'upsert' | 'deleteRecord' | 'get' | 'search' | 'update';
base: 'getMany' | 'getSchema';
table: 'create';
};
export type AirtableType = AllEntities<NodeMap>;
export {};
//# sourceMappingURL=node.type.d.ts.map