onvif-rx
Version:
Interact with ONVIF cameras and devices using RXJS
14 lines (13 loc) • 446 B
TypeScript
import { INonce, ITransportPayoad } from './interfaces';
export declare const REQUEST_HEADERS: {
'Content-Type': string;
};
export declare const FETCH_CONFIG: (body: string) => {
method: string;
body: string;
headers: {
'Content-Type': string;
};
};
export declare const sharedFetchWrapper: (fetchResponse: Promise<any>) => import("rxjs").Observable<ITransportPayoad>;
export declare const nonce: INonce;