UNPKG

@c8y/client

Version:

Client application programming interface to access the Cumulocity IoT-Platform REST services.

21 lines 499 B
import FormData from 'form-data'; /** * Data that you want to pass into your request. Based on * fetch RequestInit. */ export interface IFetchOptions extends Omit<RequestInit, 'body'> { /** * Parameters added to the url */ params?: object; /** * The headers to attach */ headers?: HeadersInit | any; body?: FormData | RequestInit['body']; /** * Parameters added as body */ [key: string]: any; } //# sourceMappingURL=IFetchOptions.d.ts.map