@tikoci/centrs
    Preparing search index...

    Interface TransferRequest

    interface TransferRequest {
        cdbFile?: string;
        cdbPassword?: string;
        confirm?: (prompt: string) => Promise<boolean>;
        force?: boolean;
        format?: string;
        host?: string;
        insecure?: boolean;
        local?: string;
        name?: string;
        outDir?: string;
        password?: string;
        path?: string;
        port?: number;
        remote?: string;
        remoteDest?: string;
        sshKey?: string;
        stdinIsTty?: boolean;
        targetInput?: string;
        timeout?: string | number;
        type?: string;
        username?: string;
        validate?: boolean;
        verb: "remove" | "list" | "mkdir" | "upload" | "download" | "copy";
        verbose?: boolean;
        verify?: string;
        via?: string;
        yes?: boolean;
    }
    Index

    Properties

    cdbFile?: string
    cdbPassword?: string
    confirm?: (prompt: string) => Promise<boolean>

    Fan-out confirmation prompt seam (defaults to the shared TTY prompt).

    force?: boolean

    Replace an existing destination instead of refusing it.

    format?: string
    host?: string
    insecure?: boolean

    Accept self-signed TLS / new SSH host keys (--insecure). Default false.

    local?: string

    Local path (or - for stdin/stdout). Present for upload/download.

    name?: string

    list filter: name glob.

    outDir?: string

    download fan-out: directory to write one file per target into.

    password?: string
    path?: string

    list path prefix filter (optional).

    port?: number
    remote?: string

    RouterOS file path. Present for upload/download/remove/mkdir and copy source.

    remoteDest?: string

    Copy destination (on-device).

    sshKey?: string

    SSH private-key path for sftp/scp (--ssh-key). Path only.

    stdinIsTty?: boolean

    Fan-out TTY detection seam (defaults to process.stdin.isTTY).

    targetInput?: string
    timeout?: string | number
    type?: string

    list filter: row type.

    username?: string
    validate?: boolean
    verb: "remove" | "list" | "mkdir" | "upload" | "download" | "copy"
    verbose?: boolean
    verify?: string

    Integrity check: size (default), checksum, or off.

    via?: string
    yes?: boolean

    Fan-out write gate: confirm a mutating fan-out (upload/remove/mkdir/copy).