浏览代码

feat(types): 删除账号接口

lipk 3 年之前
父节点
当前提交
9b179bfe3c
共有 1 个文件被更改,包括 6 次插入0 次删除
  1. 6 0
      types/src/interface/api/userApi.ts

+ 6 - 0
types/src/interface/api/userApi.ts

@@ -5,3 +5,9 @@ export namespace PostApiUserSecondaryLogin {
     phone: string;
   };
 }
+
+export namespace PostApiUserDeleteAccount {
+  export type Params = {
+    userId: string;
+  };
+}