internetarchive-ts - v0.1.0
    Preparing search index...

    Type Alias IaItemDownloadParamsBeta

    IaItemDownloadParams: {
        checksum?: boolean;
        destdir?: string;
        dryRun?: boolean;
        excludePattern?: string;
        files?: string | string[];
        formats?: string | string[];
        globPattern?: string;
        ignoreErrors?: boolean;
        ignoreExisting?: boolean;
        ignoreHistoryDir?: boolean;
        itemIndex?: number;
        noChangeTimestamp?: boolean;
        noDirectory?: boolean;
        onTheFly?: boolean;
        params?: HttpParams;
        retries?: number;
        returnResponses?: boolean;
        stdout?: boolean;
        timeout?: number;
        verbose?: boolean;
    } & (
        | { excludeSource?: undefined; source?: string
        | string[] }
        | { excludeSource?: string | string[]; source?: undefined }
    )