Files
ndm-web-platform/src/apis/model/biz/vimp/snap-result.ts
yangsy 9af76bacbb refactor: 优化请求封装
- 优化Result接口定义
- 新增响应数据解析逻辑
- 优化错误解析逻辑
2025-12-24 22:34:53 +08:00

10 lines
143 B
TypeScript

export interface SnapResult {
code: number;
msg: string;
data: {
absoluteFilePath: string;
path: string;
url: string;
};
}