aboutsummaryrefslogblamecommitdiff
path: root/src/shared/settings/properties.js
blob: 37dc881637edd0e784c12598c7f4314957228e36 (plain) (tree)
1
2
3
4
5
6
7
8
9


                                  
               
                      
                          
  
                                        
                  
                                          
                      

                           
// describe types of a propety as:
//    mystr: 'string',
//    mynum: 'number',
//    mybool: 'boolean',
const types = {
  hintchars: 'string',
  smoothscroll: 'boolean',
};

// describe default values of a property
const defaults = {
  hintchars: 'abcdefghijklmnopqrstuvwxyz',
  smoothscroll: false,
};

export { types, defaults };