Interface representing the configuration object.

interface Configuration {
    Parameters: (() => any);
    ScriptConfig: (() => any);
}

Properties

Parameters: (() => any)

Retrieves the parameters configuration.

Type declaration

    • (): any
    • Returns any

      null as parameters are not yet supported.

ScriptConfig: (() => any)

Retrieves the script configuration.

Type declaration

    • (): any
    • Returns any

      The script configuration object.