Skip to content

Commit

Permalink
Un-deprecate
Browse files Browse the repository at this point in the history
  • Loading branch information
joshdover committed Jan 21, 2020
1 parent f6a67ff commit 8abf6e6
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 4 deletions.
2 changes: 0 additions & 2 deletions src/core/public/http/types.ts
Original file line number Diff line number Diff line change
Expand Up @@ -252,14 +252,12 @@ export interface HttpFetchOptionsWithPath extends HttpFetchOptions {
* @public
*/
export interface HttpHandler {
/** @deprecated */
<TResponseBody = any>(path: string, options: HttpFetchOptions & { asResponse: true }): Promise<
HttpResponse<TResponseBody>
>;
<TResponseBody = any>(options: HttpFetchOptionsWithPath & { asResponse: true }): Promise<
HttpResponse<TResponseBody>
>;
/** @deprecated */
<TResponseBody = any>(path: string, options?: HttpFetchOptions): Promise<TResponseBody>;
<TResponseBody = any>(options: HttpFetchOptionsWithPath): Promise<TResponseBody>;
}
Expand Down
4 changes: 2 additions & 2 deletions src/core/public/public.api.md
Original file line number Diff line number Diff line change
Expand Up @@ -570,15 +570,15 @@ export interface HttpFetchQuery {

// @public
export interface HttpHandler {
// @deprecated (undocumented)
// (undocumented)
<TResponseBody = any>(path: string, options: HttpFetchOptions & {
asResponse: true;
}): Promise<HttpResponse<TResponseBody>>;
// (undocumented)
<TResponseBody = any>(options: HttpFetchOptionsWithPath & {
asResponse: true;
}): Promise<HttpResponse<TResponseBody>>;
// @deprecated (undocumented)
// (undocumented)
<TResponseBody = any>(path: string, options?: HttpFetchOptions): Promise<TResponseBody>;
// (undocumented)
<TResponseBody = any>(options: HttpFetchOptionsWithPath): Promise<TResponseBody>;
Expand Down

0 comments on commit 8abf6e6

Please sign in to comment.