@atomist/org-visualizer
Version:
Organization Visualizer using Atomist project scanning
22 lines • 675 B
TypeScript
import * as React from "react";
import { PlantedTree } from "../lib/tree/sunburst";
export interface CurrentIdealForDisplay {
displayValue: string;
}
export interface PossibleIdealForDisplay {
url?: string;
fingerprintName: string;
displayValue: string;
stringified: string;
}
export interface SunburstPageProps {
workspaceId: string;
fingerprintDisplayName: string;
currentIdeal: CurrentIdealForDisplay;
possibleIdeals: PossibleIdealForDisplay[];
query: string;
dataUrl: string;
tree: PlantedTree;
}
export declare function SunburstPage(props: SunburstPageProps): React.ReactElement;
//# sourceMappingURL=sunburstPage.d.ts.map