UNPKG

kui-shell

Version:

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

11 lines (10 loc) 405 B
import { UI } from '@kui-shell/core'; import Response from './response'; import ActivationLike from './activation'; import * as AST from './ast'; import { NodeOptions } from './graph'; export default function fsm2graph(tab: UI.Tab, ir: AST.ASTNode, containerElement?: HTMLElement, acts?: ActivationLike[], options?: NodeOptions, rule?: { trigger: { name: string; }; }): Promise<Response>;