UNPKG

@c8y/client

Version:

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

10 lines 436 B
import { IFetchOptions } from './IFetchOptions.js'; import { IFetchResponse } from './IFetchResponse.js'; export interface IFetchClient { tenant?: string; fetch(url: string, init?: IFetchOptions): Promise<IFetchResponse>; getFetchOptions(options?: IFetchOptions): IFetchOptions; getCometdHandshake(config?: any): any; getUrl(url: string, options?: IFetchOptions): string; } //# sourceMappingURL=IFetchClient.d.ts.map