manifold-3d
    Preparing search index...

    Interface Exporter

    Through this interface, manifoldCAD can infer what formats each exporter may support.

    interface Exporter {
        exportFormats: { extension: string; mimetype: string }[];
        toArrayBuffer: (
            doc: Document,
            options?: { extension?: string; mimetype?: string },
        ) => Promise<ArrayBuffer>;
    }
    Index

    Properties

    exportFormats: { extension: string; mimetype: string }[]
    toArrayBuffer: (
        doc: Document,
        options?: { extension?: string; mimetype?: string },
    ) => Promise<ArrayBuffer>