@tikoci/centrs
    Preparing search index...

    Interface TransferOperationMeta

    interface TransferOperationMeta {
        auth: { passwordProvided: boolean; username?: string };
        method: "rest" | "native" | "sftp" | "scp" | "fetch" | "ftp";
        op: "remove" | "list" | "mkdir" | "upload" | "download" | "copy";
        request: {
            force: boolean;
            format: "text" | "json" | "yaml";
            local: string | null;
            remote: string | null;
            validate: boolean;
            verb: "remove" | "list" | "mkdir" | "upload" | "download" | "copy";
            verify: "size" | "off" | "checksum";
        };
    }
    Index

    Properties

    Properties

    auth: { passwordProvided: boolean; username?: string }
    method: "rest" | "native" | "sftp" | "scp" | "fetch" | "ftp"
    op: "remove" | "list" | "mkdir" | "upload" | "download" | "copy"
    request: {
        force: boolean;
        format: "text" | "json" | "yaml";
        local: string | null;
        remote: string | null;
        validate: boolean;
        verb: "remove" | "list" | "mkdir" | "upload" | "download" | "copy";
        verify: "size" | "off" | "checksum";
    }