class ConfigOptions
A base class for options objects that can be passed to a constructor or factory function.
abstract
class ConfigOptions
Notes
- This class is intended as a base class for options objects, which can be passed directly to a constructor or factory function, or initialized using a callback (configuration) function.
- The constructor or factory function accepting options should use the init() static method to get the options object instance, which will be created and/or initialized if necessary.
Type Members
- type ConfigOptions.Arg staticType definition for a configuration function argument.
Static Members
- ConfigOptions.init(this, configArg?) staticReturns an instance of the options object, from the argument passed to a constructor or factory function.