@liatrio/backstage-dora-plugin
Version:
A Backstage plugin for DORA metrics
12 lines (8 loc) • 312 B
TypeScript
/// <reference types="react" />
import * as react from 'react';
interface ChartProps {
showServiceSelection?: boolean;
}
declare const EntityDORAAtAGlance: () => react.JSX.Element;
declare const EntityDORACharts: (props: ChartProps) => react.JSX.Element;
export { EntityDORAAtAGlance, EntityDORACharts };