onvif
    Preparing search index...

    Interface Service

    Common class for all services that handles the common xmlns, request and response

    interface Service {
        onvif: Onvif;
        service: keyof OnvifServices;
        xmlns: string;
        request<T = any>(
            body: Record<string, any>,
            options?: LineraseOptions,
        ): Promise<T>;
    }

    Hierarchy (View Summary)

    Index
    onvif: Onvif
    service: keyof OnvifServices
    xmlns: string
    • Type Parameters

      • T = any

      Parameters

      Returns Promise<T>