breeze-client
Version:
Breeze data management for JavaScript clients
14 lines (13 loc) • 560 B
TypeScript
import { HttpClient } from "@angular/common/http";
import { AjaxConfig, BreezeConfig, AjaxRequestInterceptor, AjaxAdapter } from "breeze-client";
export declare class AjaxHttpClientAdapter implements AjaxAdapter {
http: HttpClient;
static adapterName: string;
name: string;
defaultSettings: {};
requestInterceptor: AjaxRequestInterceptor;
constructor(http: HttpClient);
static register(http: HttpClient, breezeConfig?: BreezeConfig): AjaxHttpClientAdapter;
initialize(): void;
ajax(config: AjaxConfig): void;
}