UNPKG

kui-shell

Version:

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

7 lines (6 loc) 388 B
declare type CopyOutHandler = (src: string) => string; export declare const copy: (src: any, target: any) => Promise<unknown>; export declare const copyOutDirectory: (srcDir: string, fn?: CopyOutHandler) => Promise<string>; export declare const copyOutFile: (src: string) => Promise<string>; export declare const copyOut: (src: string, fn?: CopyOutHandler) => Promise<string>; export {};