breeze2-odata4
Version:
Library to allow OData 4 support for breezejs 2
14 lines (13 loc) • 371 B
TypeScript
import { ServerError, HttpResponse } from 'breeze-client';
export declare class ODataError extends Error implements ServerError {
httpResponse: HttpResponse;
message: string;
name: string;
stack?: string;
body: any;
statusText: string;
status: number;
url: string;
constructor(message?: string);
toString(): string;
}