reqable-app icon indicating copy to clipboard operation
reqable-app copied to clipboard

[feature] 希望可以在API调试功能增加,从请求or响应内容生成 Typescript 类型

Open zifengb opened this issue 1 year ago • 1 comments

例如: 我有个响应体内容

{
      "id": 1450,
      "billingTime": "2024-08-02",
      "billingStatus": "1"
}

生成类型

interface Result {
     id: number;
     billingTime: string;
     billingStatus: string;
}

zifengb avatar Aug 19 '24 02:08 zifengb

好想法,感谢建议。

MegatronKing avatar Aug 28 '24 08:08 MegatronKing