feat: reworking the techRadar plugin to support providing your own TechRadarApi to override how the data get's into your plugin

Signed-off-by: blam <ben@blam.sh>
This commit is contained in:
blam
2021-06-02 17:35:35 +02:00
parent 8703c85505
commit 9b4b405095
5 changed files with 44 additions and 42 deletions
-1
View File
@@ -60,7 +60,6 @@ export type TechRadarPageProps = TechRadarComponentProps & {
export interface TechRadarPageProps {
width: number;
height: number;
getData?: () => Promise<TechRadarLoaderResponse>;
svgProps?: object;
}
```