UNPKG

tsonik

Version:

A TypeScript client library for the Iconik API based on Swagger documentation

8 lines 320 B
/** * HTTP-related type definitions */ import { AxiosRequestConfig } from 'axios'; export type HttpMethod = 'get' | 'post' | 'put' | 'patch' | 'delete'; export type QueryParams = Record<string, string | number | boolean | object | null>; export type HttpOptions = AxiosRequestConfig; //# sourceMappingURL=http.d.ts.map