Results of sending a zip to an item.

interface IZipCopyResults {
    copiedToDestination?: boolean;
    fetchedFromSource: boolean;
    filelist: any[];
    filename: string;
    zip: JSZip;
}

Hierarchy (view full)

Properties

copiedToDestination?: boolean

Status of copying item to destination; undefined if fetchedFromSource is false

fetchedFromSource: boolean

Status of fetching item from source

filelist: any[]

List of files included in this zip

filename: string

Zip's filename

zip: JSZip

JSZip object