@n8n/n8n-benchmark
Version:
Cli for running benchmark tests for n8n
28 lines (24 loc) • 462 B
text/typescript
/**
* n8n workflow. This is a simplified version of the actual workflow object.
*/
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[];
};