UNPKG

kui-shell

Version:

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

7 lines (6 loc) 557 B
import { Commands } from '@kui-shell/core'; import { KubeResource } from '@kui-shell/plugin-k8s'; import { Task } from '../model/resource'; export declare const parse: (raw: string | PromiseLike<string>) => Promise<KubeResource<import("@kui-shell/plugin-k8s").KubeStatus>[]>; export declare const read: (command: Commands.Arguments<Commands.ParsedOptions>, filepath: string) => Promise<string>; export declare const fetchTask: (command: Commands.Arguments<Commands.ParsedOptions>, pipelineName: string, taskName: string, filepath: string) => Promise<Task>;