scp-next
    Preparing search index...

    Interface ScpNextClient

    interface ScpNextClient {
        close(): Promise<void>;
        connect(): Promise<void>;
        download(
            remotePath: string,
            localPath: string,
            options?: TransferOptions,
        ): Promise<void>;
        exec(command: string, options?: ExecOptions): Promise<ExecResult>;
        upload(
            localPath: string,
            remotePath: string,
            options?: TransferOptions,
        ): Promise<ExecResult[]>;
    }

    Implemented by

    Index