Interface IAssetExporter

interface IAssetExporter {
    exportObject(
        obj?: IObject3D,
        options?: ExportFileOptions,
    ): Promise<undefined | BlobExt>;
    getExporter(...ext: string[]): undefined | IExporter;
}

Hierarchy

Implemented by

Methods