UNPKG

kui-shell

Version:

This is the monorepo for Kui, the hybrid command-line/GUI electron-based Kubernetes tool

17 lines (16 loc) 576 B
import { UI } from '@kui-shell/core'; import ActivationLike from './activation'; import { FlowNode } from './graph'; import Response from './response'; export default function graph2doms(tab: UI.Tab, JSONgraph: FlowNode, ifReuseContainer?: Element, activations?: ActivationLike[], { layoutOptions, composites }?: { layoutOptions?: Record<string, string | boolean | number>; composites?: { label: { fontSize: string; offset: { x: number; y: number; }; }; }; }): Promise<Response>;