UNPKG

@neurosity/sdk

Version:
9 lines (8 loc) 347 B
import { Observable } from "rxjs"; import { DeviceStatus } from "../types/status"; declare type Options = { status$: Observable<DeviceStatus>; allowWhileOnSleepMode: boolean; }; export declare function whileOnline({ status$, allowWhileOnSleepMode }: Options): import("rxjs").UnaryFunction<Observable<unknown>, Observable<any>>; export {};