csshidi
Results
2
issues of
csshidi
Vue 3.2和typescript怎么使用啊,@types/找不到对应类型
## Background 所有type都在一个文件typing.d.ts,请求实体通常比较多,不好维护 ## Proposal 能否分目录生成实体表单 ## Additional context 现在就像这样,所有请求实体都在一个文件里面 `typescript` declare namespace API { type deleteUsingDELETEParams = { id: number; }; type getParams = { id: number; }; type...