1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
  | import { type RequestConfig } from 'senior-request'; 
 |  import { type AxiosRequestConfig } from 'axios'; 
 |    
 |  export type BlLifeRechargeServicesOptions<TResponse = any, TRequestOptions = any> = { 
 |    axiosConfig?: Omit<RequestConfig<TResponse, TRequestOptions>, keyof AxiosRequestConfig>; 
 |  }; 
 |    
 |  export type BlLifeRechargeAccountModelOptions = { 
 |    userId?: string; 
 |    phoneNumber?: string; 
 |    channlesNum?: string; 
 |  }; 
 |    
 |  export type BlLifeRechargeOptions< 
 |    TResponse = any, 
 |    TRequestOptions = any 
 |  > = BlLifeRechargeServicesOptions<TResponse, TRequestOptions> & 
 |    BlLifeRechargeAccountModelOptions & {}; 
 |  
  |