@openhps/core
    Preparing search index...

    Interface RemoteNodeOptions<S>

    interface RemoteNodeOptions<S extends RemoteService> {
        deserialize?: (obj: any, options?: RemotePushOptions) => DataFrame;
        name?: string;
        serialize?: (obj: DataFrame, options?: RemotePushOptions) => any;
        service?: Serializable<S>;
        uid?: string;
    }

    Type Parameters

    Hierarchy (View Summary)

    Index
    deserialize?: (obj: any, options?: RemotePushOptions) => DataFrame
    name?: string

    User friendly name of the node Used for querying a node by its name.

    serialize?: (obj: DataFrame, options?: RemotePushOptions) => any
    service?: Serializable<S>

    Service to use for the remote note

    RemoteService any remote service
    
    uid?: string

    Manually set the unique identifier of the node