WebCAD-Lib-TS API 文档 - v1.0.0
    Preparing search index...

    Interface IGetWebcadDataResponse

    获取 WebCAD 数据响应 注意:后端 API 现在返回二进制数据(压缩的 vcad),前端 Service 会处理转换

    interface IGetWebcadDataResponse {
        status: boolean;
        error?: string;
        vcadData?: ArrayBuffer;
        currentPatchId?: string;
        latestPatchId?: string;
    }
    Index

    Properties

    status: boolean

    是否成功

    error?: string

    错误信息

    vcadData?: ArrayBuffer

    vcad 二进制数据 (ArrayBuffer,压缩格式)

    currentPatchId?: string

    当前请求的 Patch ID

    latestPatchId?: string

    最新的 Patch ID(通过 listWebcadDraws 获取)