reqable-app
reqable-app copied to clipboard
[feature] 希望可以在API调试功能增加,从请求or响应内容生成 Typescript 类型
例如: 我有个响应体内容
{
"id": 1450,
"billingTime": "2024-08-02",
"billingStatus": "1"
}
生成类型
interface Result {
id: number;
billingTime: string;
billingStatus: string;
}
好想法,感谢建议。