@@ -1,3 +1,4 @@
export * from './approvaApi';
export * from './processApi';
export * from './businessApi';
+export * from './userApi';
@@ -0,0 +1,7 @@
+export namespace PostApiUserSecondaryLogin {
+ export type Params = {
+ userId: string;
+ code: string;
+ phone: string;
+ };
+}