UNPKG

@logi.one/rest-client

Version:

This is a free, ultra-lightweight and easy to use rest client for node.js supporting JSON requests and streams with no external dependencies.

8 lines (7 loc) 179 B
import { Search } from './search'; export interface RequestOptions<T> { token?: string; headers?: Record<string, string>; body?: T | undefined; search?: Search; }