Interface ReplaceReadyFile

interface ReplaceReadyFile {
    action: "replace";
    createNewVersion: 0 | 1;
    data: Buffer;
    headers?: {
        [key: string]: string;
    };
    id: string;
    localFolder: string;
    name: string;
    sha1: string;
    size: number;
    type: string;
}

Properties

action: "replace"
createNewVersion: 0 | 1
data: Buffer
headers?: {
    [key: string]: string;
}
id: string
localFolder: string
name: string
sha1: string
size: number
type: string