Interface ReplaceFileOptions

interface ReplaceFileOptions {
    createNewVersion?: boolean;
    headers?: {
        [key: string]: string;
    };
}

Properties

createNewVersion?: boolean

Whether to create a new version of the file. Default is true.

headers?: {
    [key: string]: string;
}