UNPKG

kui-shell

Version:

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

9 lines (8 loc) 283 B
import { Commands } from '@kui-shell/core'; import EditorEntity from './fetchers'; interface Options extends Commands.ParsedOptions { name?: string; type?: string; } declare const _default: (parsedOptions: Options) => (entity: EditorEntity) => void; export default _default;