Skip to content
Snippets Groups Projects

Resolve "Workflow usage statistics"

Merged Daniel Göbel requested to merge feature/48-workflow-usage-statistics into development
9 files
+ 508
10
Compare changes
  • Side-by-side
  • Inline
Files
9
 
/* istanbul ignore file */
 
/* tslint:disable */
 
/* eslint-disable */
 
 
export type WorkflowStatistic = {
 
/**
 
* Day of the datapoint
 
*/
 
day: string;
 
/**
 
* Number of started workflows on that day
 
*/
 
count: number;
 
};
 
Loading