@tikoci/centrs
    Preparing search index...

    Interface TransferData

    interface TransferData {
        bytes: number | null;
        durationMs?: number;
        local: string | null;
        method: "rest" | "native" | "sftp" | "scp" | "fetch" | "ftp";
        op: "remove" | "list" | "mkdir" | "upload" | "download" | "copy";
        remote: string | null;
        rows?: readonly Record<string, unknown>[];
        verified: "size" | "off" | "checksum" | null;
    }
    Index

    Properties

    bytes: number | null
    durationMs?: number
    local: string | null
    method: "rest" | "native" | "sftp" | "scp" | "fetch" | "ftp"

    Concrete method used (rest, native, …).

    op: "remove" | "list" | "mkdir" | "upload" | "download" | "copy"
    remote: string | null
    rows?: readonly Record<string, unknown>[]

    Only on list: the /file rows.

    verified: "size" | "off" | "checksum" | null