UNPKG

n8n-nodes-base

Version:

Base nodes of n8n

12 lines 266 B
import type { IDataObject } from 'n8n-workflow'; export type LoaderGetResponse = { data: Array<{ id: string; name: string; }>; } & IDataObject; export type Option = { value: string; name: string; }; //# sourceMappingURL=types.d.ts.map