camstreamerlib
Version:
Helper library for CamStreamer ACAP applications.
13 lines (12 loc) • 606 B
TypeScript
import { HttpOptions } from '../../internal/types';
import { ProxyClient } from '../../internal/ProxyClient';
import { THttpRequestOptions, TProxyParams } from '../../types/common';
import { DefaultClient } from '../DefaultClient';
export declare class AxisCameraStationEvents {
private sourceKey;
private client;
constructor(clientOptions: HttpOptions, sourceKey: string);
getClient(proxyParams?: TProxyParams): DefaultClient | ProxyClient<DefaultClient>;
sendEvent(data: Record<string, string>, eventType: string, options?: THttpRequestOptions): Promise<void>;
private getDate;
}