@c8y/client
Version:
Client application programming interface to access the Cumulocity IoT-Platform REST services.
21 lines • 499 B
TypeScript
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
*/
[]: any;
}
//# sourceMappingURL=IFetchOptions.d.ts.map