UNPKG

kui-shell

Version:

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

23 lines (22 loc) 817 B
import UI from '@kui-shell/core/api/ui'; export declare const gotoReadonlyLocalFile: ({ getEntity }: { getEntity: any; }) => (tab: UI.Tab) => Promise<import("@kui-shell/core/models/entity").Entity>; export declare const edit: ({ getEntity, lock }: { getEntity: any; lock?: any; }) => (tab: UI.Tab) => Promise<import("@kui-shell/core/models/entity").Entity>; export declare const lockIcon: ({ getEntity, mode, label, tooltip, direct }: { getEntity: any; mode?: string; label?: string; tooltip?: string; direct?: (tab: UI.Tab) => Promise<import("@kui-shell/core/models/entity").Entity>; }) => { mode: string; label: string; flush: string; actAsButton: boolean; balloon: string; direct: (tab: UI.Tab) => Promise<import("@kui-shell/core/models/entity").Entity>; };