Skip to content

Latest commit

 

History

History
18 lines (13 loc) · 428 Bytes

File metadata and controls

18 lines (13 loc) · 428 Bytes

ModuleSettings

This structure is used to house module configurations. Please refer to each module's documentation on how to create the configuration structures. Usually the keys will match the name of the module to be configured.

component {

     function configure() {

         moduleSettings = {
             myModule = {
                someSetting = "overridden"
             }
        };
    }
}