UNPKG

@n8n/n8n-benchmark

Version:

Cli for running benchmark tests for n8n

22 lines (21 loc) 413 B
export type Workflow = { id: string; name: string; versionId: string; tags?: string[]; }; export type Credential = { id: string; name: string; type: string; }; export type DataTableColumn = { name: string; type: 'string' | 'number' | 'boolean' | 'date'; }; export type DataTable = { id?: string; projectId?: number; name: string; columns: DataTableColumn[]; };