UNPKG

@c8y/client

Version:

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

10 lines 430 B
import { IFetchOptions } from './IFetchOptions'; import { IFetchResponse } from './IFetchResponse'; 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