lml-main
Version:
This is now a mono repository published into many standalone packages.
13 lines (12 loc) • 428 B
TypeScript
import { Observable } from 'rxjs';
import { ActionsObservable } from 'redux-observable';
import { Store } from 'redux';
import { RootState } from '../reducers';
export interface PusherLocationPing {
objectId: string;
refId: string;
latitude: number;
longitude: number;
timestamp: string;
}
export declare const subscribeToPings: (action$: ActionsObservable<any>, store: Store<RootState>) => Observable<any>;