Blockbench Reference Docs
    Preparing search index...
    interface WriteOptions {
        content?: string | ArrayBuffer | Blob;
        custom_writer?: (
            content: string | ArrayBuffer | Blob,
            file_path: string,
            callback?: (file_path: string) => void,
        ) => void;
        savetype?: WriteType | ((file: string) => WriteType);
    }

    Hierarchy (View Summary)

    Index

    Properties

    content?: string | ArrayBuffer | Blob
    custom_writer?: (
        content: string | ArrayBuffer | Blob,
        file_path: string,
        callback?: (file_path: string) => void,
    ) => void
    savetype?: WriteType | ((file: string) => WriteType)