camera-probe
Version:
Realtime scanning and discovery of networked cameras.
13 lines (12 loc) • 459 B
TypeScript
import { IProbeConfig, Strings } from '../core/interfaces';
import { Observable } from 'rxjs';
export interface IWsResponseModel {
readonly raw: string;
readonly doc: Document;
}
export declare type IWsResponses = readonly IWsResponseModel[];
export declare type IWsResponse = Observable<IWsResponses>;
export interface IWsProbeConfig extends IProbeConfig {
readonly DEVICES: Strings;
readonly PARSER: (str: string) => Document;
}