UNPKG

@lcap/nasl

Version:

NetEase Application Specific Language

9 lines 368 B
export = BaseService; declare class BaseService { get(url: any, params: any): Promise<any>; post(opts: any): Promise<false | rp.AxiosResponse<any, any>>; put(opts: any): Promise<false | rp.AxiosResponse<any, any>>; delete(opts: any): Promise<false | rp.AxiosResponse<any, any>>; } import rp = require("axios"); //# sourceMappingURL=BaseService.d.ts.map