cucumber-html-report-generator
Version:
Generate beautiful cucumberjs html reports for multiple instances (browsers / devices)
19 lines (14 loc) • 381 B
TypeScript
import type Chart from 'chart.js';
declare module 'chart.js'{
export interface ChartAnimationOptions {
chart?: Chart;
}
// eslint-disable-next-line @typescript-eslint/no-unused-vars
export interface ElementOptionsByType<TType>{
text?: string;
}
export interface ChartDataSets{
labels?: string[];
}
export type AnyObject = Record<string, unknown>;
}