UNPKG

kui-shell

Version:

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

22 lines (21 loc) 618 B
export interface TypedEntityName { type: string; fqn: string; actionName?: string; packageName?: string; } export declare const maybeAsDate: (str: any) => any; export declare const isDirectory: (filepath: string) => Promise<boolean>; export declare const toOpenWhiskFQN: ({ kind, spec, metadata }: { kind: any; spec: any; metadata: any; }) => TypedEntityName; export declare class StatusError extends Error { } export declare class TryLaterError extends StatusError { } export declare class NotFoundError extends StatusError { code: any; constructor(message: string, code?: any); }