mnubo-sdk
Version:
mnubo SmartObjects JavaScript client
9 lines (8 loc) • 387 B
TypeScript
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>;
}