File size: 285 Bytes
b39afbe
 
 
 
 
 
 
 
 
 
 
 
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * Copyright (c) 2023 MERCENARIES.AI PTE. LTD.
 * All rights reserved.
 */

declare module 'swagger-client' {
  export default class SwaggerClient {
    constructor(url: string, options: any);
    execute(options: any): Promise<any>;
    resolve(options: any): Promise<any>;
  }
}