interface ClientConfigurationOperations {
    exportAsCustom(params: ExportCustomParams): Promise<unknown>;
    exportAsGLTF(params?: ExportGLTFParams): Promise<string>;
    exportImage(params: ExportImageParams): Promise<ExportImageResult>;
    save(): Promise<SaveResult>;
}

Methods

  • Exports the active configuration as a gltf.

    Returns the url to the gltf.

    Parameters

    Returns Promise<string>