Hiyve Components - v1.0.0
    Preparing search index...

    Interface FileModifyOptions

    Options for modifying an existing file.

    Used with the client's modifyFile method to update an existing file.

    const options: FileModifyOptions = {
    file: new File([updatedBlob], 'notes.json'),
    fileId: 'existing-file-id',
    };
    await client.modifyFile(options);
    interface FileModifyOptions {
        file: File;
        fileId: string;
    }
    Index

    Properties

    Properties

    file: File

    The updated file content

    fileId: string

    ID of the file to modify