kui-shell
Version:
This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool
15 lines (14 loc) • 503 B
TypeScript
import { KubeResource } from '@kui-shell/plugin-k8s';
import { ActivationLike, FlowNode, Edge } from '@kui-shell/plugin-wskflow';
import { PipelineRun } from '../model/resource';
interface TektonNode extends FlowNode {
nChildren: number;
nParents: number;
}
interface Graph extends TektonNode {
readonly edges: Edge[];
children: TektonNode[];
runs: ActivationLike[];
}
export default function (jsons: KubeResource[], filepath?: string, run?: PipelineRun): Promise<Graph>;
export {};