camstreamerlib
Version:
Helper library for CamStreamer ACAP applications.
11 lines (10 loc) • 409 B
TypeScript
import { IClient, HttpOptions } from '../internal/types';
import { Response } from 'undici';
export type AcsEventsOptions = HttpOptions;
export declare class AxisCameraStationEvents {
private sourceKey;
private client;
constructor(sourceKey: string, opt?: AcsEventsOptions | IClient<Response>);
sendEvent(data: Record<string, string>, eventType: string): Promise<void>;
private getDate;
}