build(projects): 依赖升级,规范目录

This commit is contained in:
Soybean
2021-08-13 14:22:35 +08:00
parent d680e7d931
commit a0ec84588a
29 changed files with 857 additions and 561 deletions

View File

@ -0,0 +1,9 @@
/** 用户信息 */
export interface UserInfo {
/** 用户id */
userId: string;
/** 用户名 */
userName: string;
/** 用户手机号 */
userPhone: string;
}

1
src/interface/index.ts Normal file
View File

@ -0,0 +1 @@
export { UserInfo } from './business';