source: trip-planner-front/node_modules/rxjs/internal/observable/dom/fetch.d.ts@ 571e0df

Last change on this file since 571e0df was 6a3a178, checked in by Ema <ema_spirova@…>, 3 years ago

initial commit

  • Property mode set to 100644
File size: 357 bytes
Line 
1import { Observable } from '../../Observable';
2import { ObservableInput } from '../../types';
3export declare function fromFetch<T>(input: string | Request, init: RequestInit & {
4 selector: (response: Response) => ObservableInput<T>;
5}): Observable<T>;
6export declare function fromFetch(input: string | Request, init?: RequestInit): Observable<Response>;
Note: See TracBrowser for help on using the repository browser.