packages: regenerate all API reports with prettier
Signed-off-by: Patrik Oldsberg <poldsberg@gmail.com>
This commit is contained in:
@@ -3,7 +3,6 @@
|
||||
> Do not edit this file. It is a report generated by [API Extractor](https://api-extractor.com/).
|
||||
|
||||
```ts
|
||||
|
||||
/// <reference types="react" />
|
||||
|
||||
import { ApiRef } from '@backstage/core-plugin-api';
|
||||
@@ -12,112 +11,116 @@ import { RouteRef } from '@backstage/core-plugin-api';
|
||||
|
||||
// @public (undocumented)
|
||||
export interface RadarEntry {
|
||||
// (undocumented)
|
||||
description?: string;
|
||||
// (undocumented)
|
||||
id: string;
|
||||
// (undocumented)
|
||||
key: string;
|
||||
// (undocumented)
|
||||
quadrant: string;
|
||||
// (undocumented)
|
||||
timeline: Array<RadarEntrySnapshot>;
|
||||
// (undocumented)
|
||||
title: string;
|
||||
// (undocumented)
|
||||
url: string;
|
||||
// (undocumented)
|
||||
description?: string;
|
||||
// (undocumented)
|
||||
id: string;
|
||||
// (undocumented)
|
||||
key: string;
|
||||
// (undocumented)
|
||||
quadrant: string;
|
||||
// (undocumented)
|
||||
timeline: Array<RadarEntrySnapshot>;
|
||||
// (undocumented)
|
||||
title: string;
|
||||
// (undocumented)
|
||||
url: string;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface RadarEntrySnapshot {
|
||||
// (undocumented)
|
||||
date: Date;
|
||||
// (undocumented)
|
||||
description?: string;
|
||||
// (undocumented)
|
||||
moved?: MovedState;
|
||||
// (undocumented)
|
||||
ringId: string;
|
||||
// (undocumented)
|
||||
date: Date;
|
||||
// (undocumented)
|
||||
description?: string;
|
||||
// (undocumented)
|
||||
moved?: MovedState;
|
||||
// (undocumented)
|
||||
ringId: string;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface RadarQuadrant {
|
||||
// (undocumented)
|
||||
id: string;
|
||||
// (undocumented)
|
||||
name: string;
|
||||
// (undocumented)
|
||||
id: string;
|
||||
// (undocumented)
|
||||
name: string;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface RadarRing {
|
||||
// (undocumented)
|
||||
color: string;
|
||||
// (undocumented)
|
||||
id: string;
|
||||
// (undocumented)
|
||||
name: string;
|
||||
// (undocumented)
|
||||
color: string;
|
||||
// (undocumented)
|
||||
id: string;
|
||||
// (undocumented)
|
||||
name: string;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const Router: {
|
||||
({ title, subtitle, pageTitle, ...props }: TechRadarPageProps): JSX.Element;
|
||||
defaultProps: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
pageTitle: string;
|
||||
};
|
||||
({ title, subtitle, pageTitle, ...props }: TechRadarPageProps): JSX.Element;
|
||||
defaultProps: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
pageTitle: string;
|
||||
};
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
export interface TechRadarApi {
|
||||
load: (id: string | undefined) => Promise<TechRadarLoaderResponse>;
|
||||
load: (id: string | undefined) => Promise<TechRadarLoaderResponse>;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const techRadarApiRef: ApiRef<TechRadarApi>;
|
||||
|
||||
// @public (undocumented)
|
||||
export const TechRadarComponent: (props: TechRadarComponentProps) => JSX.Element;
|
||||
export const TechRadarComponent: (
|
||||
props: TechRadarComponentProps,
|
||||
) => JSX.Element;
|
||||
|
||||
// @public (undocumented)
|
||||
export interface TechRadarComponentProps {
|
||||
// (undocumented)
|
||||
height: number;
|
||||
// (undocumented)
|
||||
id?: string;
|
||||
// (undocumented)
|
||||
svgProps?: object;
|
||||
// (undocumented)
|
||||
width: number;
|
||||
// (undocumented)
|
||||
height: number;
|
||||
// (undocumented)
|
||||
id?: string;
|
||||
// (undocumented)
|
||||
svgProps?: object;
|
||||
// (undocumented)
|
||||
width: number;
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export interface TechRadarLoaderResponse {
|
||||
// (undocumented)
|
||||
entries: RadarEntry[];
|
||||
// (undocumented)
|
||||
quadrants: RadarQuadrant[];
|
||||
// (undocumented)
|
||||
rings: RadarRing[];
|
||||
// (undocumented)
|
||||
entries: RadarEntry[];
|
||||
// (undocumented)
|
||||
quadrants: RadarQuadrant[];
|
||||
// (undocumented)
|
||||
rings: RadarRing[];
|
||||
}
|
||||
|
||||
// @public (undocumented)
|
||||
export const TechRadarPage: {
|
||||
({ title, subtitle, pageTitle, ...props }: TechRadarPageProps): JSX.Element;
|
||||
defaultProps: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
pageTitle: string;
|
||||
};
|
||||
({ title, subtitle, pageTitle, ...props }: TechRadarPageProps): JSX.Element;
|
||||
defaultProps: {
|
||||
title: string;
|
||||
subtitle: string;
|
||||
pageTitle: string;
|
||||
};
|
||||
};
|
||||
|
||||
// @public (undocumented)
|
||||
const techRadarPlugin: BackstagePlugin< {
|
||||
root: RouteRef<undefined>;
|
||||
}, {}>;
|
||||
export { techRadarPlugin as plugin }
|
||||
export { techRadarPlugin }
|
||||
const techRadarPlugin: BackstagePlugin<
|
||||
{
|
||||
root: RouteRef<undefined>;
|
||||
},
|
||||
{}
|
||||
>;
|
||||
export { techRadarPlugin as plugin };
|
||||
export { techRadarPlugin };
|
||||
|
||||
// (No @packageDocumentation comment for this package)
|
||||
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user