default: {
    archive: (simulation: { id: string }) => Promise<ICallResponse>;
    download: (
        simulation: { id: string },
        result: { fileName: string; originPath: string },
    ) => Promise<ICallResponse>;
    load: (
        simulation: { id: string },
        result: { glb: string; originPath: string },
    ) => Promise<IGeometryPart>;
} = ...

Type declaration

  • archive: (simulation: { id: string }) => Promise<ICallResponse>
  • download: (
        simulation: { id: string },
        result: { fileName: string; originPath: string },
    ) => Promise<ICallResponse>
  • load: (
        simulation: { id: string },
        result: { glb: string; originPath: string },
    ) => Promise<IGeometryPart>