@tduniec/backstage-plugin-time-saver
Version:
This plugin provides an implementation of charts and statistics related to your time savings that are coming from usage of your templates. Plugins is built from frontend and backend part. This part of plugin `frontend` is responsible of providing views wi
26 lines (25 loc) • 395 B
TypeScript
export interface Config {
/**
* @visibility frontend
*/
ts?: {
/**
* @visibility frontend
*/
frontend?: {
/**
* @visibility frontend
*/
table?: {
/**
* @visibility frontend
*/
showInDays?: boolean;
/**
* @visibility frontend
*/
hoursPerDay?: number;
};
};
};
}