能不能再加一个功能 可以生成各种开发语言的 model
参考
https://app.quicktype.io/
示例
```
// json 数据
{
"install": {
"open": true,
"url": "https://www.extensions-hub.com/partners/installed?name=M3U8-Downloader"
},
"uninstall": {
"open": true,
"url": "https://www.extensions-hub.com/partners/uninstalled?name=M3U8-Downloader"
},
"update": {
"open": true,
"url": "https://www.extensions-hub.com/m3u8-downloader/updated/"
},
"news": [
{
"open": true,
"url": "https://chromewebstore.google.com/detail/m3u8-downloader-pro/agiifopjckffghgiggmfnpbdamhpejfi",
"title": "M3U8 Downloader Pro",
"desc": "M3U8 Downloader Pro has been released."
}
]
}
export interface Response {
install: Install;
uninstall: Install;
update: Install;
news: News[];
}
export interface Install {
open: boolean;
url: string;
}
export interface News {
open: boolean;
url: string;
title: string;
desc: string;
}
``` |