odc.xiaohui
2024-02-29 55b49a69cf2267eb39b2b506aed5a93b51d5d528
1
2
3
4
5
6
7
8
9
10
export interface MockParams {
    url: string;
    type: string;
    data?: any;
    params?: any;
    response(option?: any): Record<string, unknown>;
  }
 
  export  function mockXHR(): any;