Interface DataManager

interface DataManager {
    doCommand: ((command) => Promise<StructType>);
    sync: ((extra?) => Promise<void>);
}

Hierarchy (view full)

Implemented by

Properties

Properties

doCommand: ((command) => Promise<StructType>)

Send/Receive arbitrary commands to the resource.

Type declaration

sync: ((extra?) => Promise<void>)

Type declaration

    • (extra?): Promise<void>
    • Parameters

      Returns Promise<void>

Generated using TypeDoc