UNPKG

mnubo-sdk

Version:
9 lines (8 loc) 387 B
import { Request, RequestOptions } from './request'; export declare class http { static request(request: Request): Promise<any>; static get(options: RequestOptions): Promise<any>; static post(options: RequestOptions, body: string): Promise<any>; static put(options: RequestOptions, body: string): Promise<any>; static delete(options: RequestOptions): Promise<any>; }