@jaricardodev/ews-javascript-api
Version:
EWS Managed api in JavaScript
17 lines (7 loc) • 369 B
text/typescript
import { IEwsHttpWebResponse } from "./IEwsHttpWebResponse";
import { IEwsHttpWebRequest } from "./IEwsHttpWebRequest";
/** @internal */
export interface IEwsHttpWebRequestFactory {
CreateExceptionResponse(exception: any /*System.Net.WebException*/): IEwsHttpWebResponse;
CreateRequest(uri: string /*Uri*/): IEwsHttpWebRequest;
}