浏览代码

feat(types): 二次验证登录接口

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

+ 1 - 0
types/src/interface/api/index.ts

@@ -1,3 +1,4 @@
 export * from './approvaApi';
 export * from './approvaApi';
 export * from './processApi';
 export * from './processApi';
 export * from './businessApi';
 export * from './businessApi';
+export * from './userApi';

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

@@ -0,0 +1,7 @@
+export namespace PostApiUserSecondaryLogin {
+  export type Params = {
+    userId: string;
+    code: string;
+    phone: string;
+  };
+}