breeze-bridge-angular
Version:
A bridge that configures Breeze to work with Angular out of the box.
13 lines (12 loc) • 353 B
TypeScript
import { Http } from '@angular/http';
import { DsaConfig } from "./common";
export declare class AjaxAngularAdapter {
http: Http;
static adapterName: string;
name: string;
defaultSettings: {};
requestInterceptor: (info: {}) => {};
constructor(http: Http);
initialize(): void;
ajax(config: DsaConfig): void;
}