Interface IConfigSection

A Configurable data section.

interface IConfigSection {
    data: JSONObject;
    serverSettings: ServerConnection.ISettings;
    update(newdata): Promise<JSONObject>;
}

Properties

Methods

Properties

The data for this section.

serverSettings: ServerConnection.ISettings

The server settings for the section.

Methods