Interface IFetchClient

interface IFetchClient {
    tenant?: string;
    fetch(url: string, init?: IFetchOptions): Promise<IFetchResponse>;
    getCometdHandshake(config?: any): any;
    getFetchOptions(options?: IFetchOptions): IFetchOptions;
    getUrl(url: string, options?: IFetchOptions): string;
}

Implemented by

Properties

tenant?: string

Methods