Skip to content
Snippets Groups Projects
Select Git revision
  • 5b8d030f3950041484d845d0bf9d8f96f7dcd294
  • master default protected
  • iop-ugw-8.4.1.50
  • iop-ugw-8.4.1.30
  • 8.1.1-ga_master
  • fix-1150
  • speedport_smart3
  • sps3
  • 8.1.1_master
  • jh
  • jh-mcast
11 results

midcomms.c

Blame
  • OptionRegistry.ts 632 B
    import Registry = require('./Registry');
    
    type Option = boolean|number;
    
    /**
     * This class defines a registry for custom formats used within JSF.
     */
    class OptionRegistry extends Registry<Option> {
    
      constructor() {
        super();
        this.data['failOnInvalidTypes'] = true;
        this.data['defaultInvalidTypeProduct'] = null;
        this.data['useDefaultValue'] = false;
        this.data['requiredOnly'] = false;
        this.data['maxItems'] = null;
        this.data['maxLength'] = null;
        this.data['defaultMinItems'] = 0;
        this.data['defaultRandExpMax'] = 10;
        this.data['alwaysFakeOptionals'] = false;
      }
    }
    
    export = OptionRegistry;