UNPKG

kui-shell

Version:

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

8 lines (7 loc) 447 B
import { SimpleEntity, MixedResponse } from './entity'; import { Table, MultiTable } from '../webapp/models/table'; import { CustomSpec } from '../webapp/views/sidecar'; export declare type Streamable = SimpleEntity | Table | MultiTable | CustomSpec | MixedResponse; export default Streamable; export declare type Stream = (response: Streamable, killLine?: boolean) => Promise<void>; export declare type StreamableFactory = () => Promise<Stream>;