Interface WriteBinaryFileNodeParameters

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

Properties§

§readonly dataPropertyName?: string

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

§readonly fileName?: string

Path to which the file should be written

§readonly options?: { ... }

Default: {}