소스 검색

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;
+  };
+}