UNPKG

loop-modules

Version:

Shared modules for the Loop product suite.

14 lines (13 loc) 467 B
import { Http } from '@angular/http'; import 'rxjs/add/operator/map'; import 'rxjs/add/operator/catch'; import { Observable } from 'rxjs/Observable'; import { Store } from '@ngrx/store'; import { APIDispatcher } from '../utils/index'; export declare class MediaService extends APIDispatcher { http: Http; store: Store<any>; constructor(http: Http, store: Store<any>); signUrl(fileLocation: string): Observable<any>; signForm(): Observable<any>; }