Skip to content
Snippets Groups Projects
Select Git revision
  • 0357a8f6aa87351ca3f1c726c9cbfe20eb796363
  • iopsys default
  • uci-to-table
  • issue_fixed
  • greenkeeper/initial
  • master protected
  • karo/log
  • snyk-fix-8e3a3f5428e7d2f2a6a0b21052232807
  • snyk-fix-c6962d7d56b2e303922077c21f80e4c4
  • reqProp
  • semantic-release
  • type-arrays
  • console-logger
  • draft-07-support
  • contrib-tweak
  • 48-readme-status
  • 35-identifiable
  • 56-stable-sort
  • release/1.0.4
  • 36-attribute-links
  • 46-blockquote-escape
  • v3.3.1
  • v3.3.0
  • v3.2.0
  • v3.1.2
  • v3.1.1
  • v3.1.0
  • v3.0.1
  • v3.0.0
  • v2.1.2
  • v2.1.1
  • v2.1.0
  • v2.0.0
  • v1.0.0
  • 1.1.0
  • 1.0.6
  • 1.0.5
  • 1.0.2
  • 1.0.1
39 results

definitions.schema.md

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;