Interface WriteBinaryFileNodeParameters

Source
interface WriteBinaryFileNodeParameters {
    dataPropertyName?: string;
    fileName?: string;
    options?: { append?: boolean };
}

Properties§

Source§

readonly dataPropertyName?: string

Name of the binary property which contains the data for the file to be written Default: "data"

Source§

readonly fileName?: string

Path to which the file should be written

Source§

readonly options?: { append?: boolean }

Default: {}