scp-next
    Preparing search index...

    Interface ResolvedTransferConfig

    interface ResolvedTransferConfig {
        agent?: string;
        createDirectories?: boolean;
        destination: string;
        dryRun?: boolean;
        host?: string;
        hostFingerprint?: string;
        knownHostsFile?: string;
        onProgress?: (progress: TransferProgress) => void;
        operation: TransferOperation;
        overwrite?: boolean;
        passphrase?: string;
        password?: string;
        port?: number;
        postUploadCommands?: string[];
        privateKey?: string | Buffer<ArrayBufferLike>;
        privateKeyFile?: string;
        profile?: string;
        recursive?: boolean;
        source: string;
        timeout?: number;
        username?: string;
    }

    Hierarchy (View Summary)

    Index
    agent?: string
    createDirectories?: boolean
    destination: string
    dryRun?: boolean
    host?: string
    hostFingerprint?: string
    knownHostsFile?: string
    onProgress?: (progress: TransferProgress) => void
    overwrite?: boolean
    passphrase?: string
    password?: string
    port?: number
    postUploadCommands?: string[]

    Remote command strings run sequentially only after a successful upload.

    privateKey?: string | Buffer<ArrayBufferLike>
    privateKeyFile?: string
    profile?: string
    recursive?: boolean
    source: string
    timeout?: number
    username?: string