@openhps/core
    Preparing search index...

    Interface TrajectoryServiceOptions

    interface TrajectoryServiceOptions {
        autoBind?: boolean;
        dataService?: Constructor<DataObject>;
        defaultUID?: (object: DataObject) => string;
        deserialize?: (obj: any) => any;
        keepChangelog?: boolean;
        serialize?: (obj: any) => any;
        uid?: string;
    }

    Hierarchy (View Summary)

    Index
    autoBind?: boolean

    Automatically bind to the data object service

    true
    
    dataService?: Constructor<DataObject>

    Dataservice to fetch stored data objects

    defaultUID?: (object: DataObject) => string

    Default UID of a trajectory with autoBind = true

    (object) => object.uid
    
    deserialize?: (obj: any) => any
    keepChangelog?: boolean

    Keep a changelog of objects returned by the data service

    serialize?: (obj: any) => any
    uid?: string